@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Boyomo About Us Page Stylesheet */

:root {
  --about-bg: #f8f4ed; /* Premium warm beige/cream background */
  --about-card-bg: #ffffff;
  --about-text-primary: #0f223d; /* Elegant deep slate navy */
  --about-text-secondary: #5a6b82; /* Muted slate */
  --about-accent-orange: #ff5e14; /* Bold brand orange */
  --about-accent-orange-light: rgba(255, 94, 20, 0.06);
  --about-accent-green: #8ac53e; /* Fresh brand green */
  --about-border: rgba(15, 34, 61, 0.08);
  --about-font-sans: 'Poppins', sans-serif;
  --about-font-serif: 'Poppins', sans-serif;
  --about-font-cursive: 'Satisfy', cursive;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;  /* ONLY on html — fixes double scrollbar bug */
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--contact-bg);
  /* Do NOT add overflow-x: hidden here — causes 2nd scrollbar */
}
/* Page Reset & Base Settings */
.about-page-wrapper,
.about-page-wrapper * {
  box-sizing: border-box;
}

.about-page-wrapper {
  background-color: var(--about-bg);
  color: var(--about-text-primary);
  font-family: var(--about-font-sans);
  min-height: 100vh;
  position: relative;
  overflow: hidden; /* Prevent background decorations from causing overflow */
  padding-top: 100px; /* Leave space for the main header */
}

/* Background Decorations */
.about-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-dot-grid {
  position: absolute;
  top: 140px;
  left: 60px;
  width: 70px;
  height: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  opacity: 0.6;
}

.about-dot {
  width: 4px;
  height: 4px;
  background-color: #e5cfb8;
  border-radius: 50%;
}

.about-watermark {
  position: absolute;
  top: 8%;
  right: 5%;
  font-family: var(--about-font-serif);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 34, 61, 0.025);
  user-select: none;
  z-index: 1;
  text-transform: uppercase;
}

/* Section 1: Hero Container */
.about-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 80px 50px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Side Content */
.about-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-pretitle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.about-pretitle-wrapper.centered {
  align-items: center;
  margin-bottom: 16px;
}

.about-pretitle {
  color: var(--about-accent-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-pretitle-line {
  width: 60px;
  height: 2px;
  background-color: var(--about-accent-orange);
  margin-top: 4px;
}

.about-pretitle-wrapper.centered .about-pretitle-line {
  margin-top: 4px;
}

/* Main Display Title */
.about-main-title {
  font-family: var(--about-font-sans);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--about-text-primary);
  margin: 0 0 28px 0;
  letter-spacing: -1.5px;
}

.about-main-title span.text-orange {
  color: var(--about-accent-orange);
}

.about-desc {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  color: var(--about-text-secondary);
  max-width: 480px;
  margin: 0 0 35px 0;
}

/* Premium Rounded Gradient CTA */
.about-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff8c00 0%, #ff5e14 100%);
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 94, 20, 0.25);
  transition: var(--transition-smooth);
  margin-bottom: 50px;
}

.about-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 94, 20, 0.4);
  background: linear-gradient(135deg, #ff9b18 0%, #ff6f24 100%);
}

.about-hero-cta .cta-arrow {
  transition: transform 0.3s ease;
}

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

/* Rotating Stamp Badge styling */
.about-badge-container {
  position: relative;
  width: 110px;
  height: 110px;
  margin-top: 10px;
}

.circular-badge {
  width: 100%;
  height: 100%;
  animation: rotateBadge 20s linear infinite;
}

.about-badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 34, 61, 0.08);
}

.about-badge-letter {
  font-family: var(--about-font-serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--about-text-primary);
  line-height: 1;
}

/* Right Column Visuals */
.about-visual-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.about-visual-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.about-visual-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
}

/* 3D Podium & Image Float Wrapper */
.about-podium-wrapper {
  position: relative;
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  margin-top: -120px; /* Shift higher up */
}

.about-image-float {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
  animation: floatImage 6s ease-in-out infinite;
}

.about-hero-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(15, 34, 61, 0.08));
}

/* Podium Shadow under the bottle */
.about-podium-shadow {
  position: absolute;
  bottom: 45px;
  width: 380px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(15, 34, 61, 0.25) 0%, rgba(15, 34, 61, 0) 70%);
  border-radius: 50%;
  z-index: 2;
  animation: floatShadow 6s ease-in-out infinite;
}

/* 3D Podium Cylinder */
.about-podium {
  position: relative;
  width: 480px;
  height: 60px;
  margin-top: -45px;
  z-index: 1;
}

.about-podium-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: linear-gradient(180deg, #ffffff 0%, #eaeaea 100%);
  border-radius: 50%;
  border: 1.5px solid #d4af37; /* Clean golden metallic border rim */
  z-index: 2;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.about-podium-front {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 44px;
  background: linear-gradient(90deg, #cccccc 0%, #dfdfdf 12%, #fcfcfc 50%, #dfdfdf 88%, #cccccc 100%);
  border-radius: 0 0 50% 50% / 0 0 50% 50%;
  z-index: 1;
  box-shadow: 0 12px 28px rgba(15, 34, 61, 0.07);
}


/* Section 2: Our Philosophy Section */
.about-philosophy-section {
  padding: 10px 100px 50px 100px;
  background-color: var(--about-bg); /* Match general warm beige theme */
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Floating mint leaves at bottom left */
.philosophy-mint-leaves {
  position: absolute;
  bottom: -30px;
  left: -20px;
  pointer-events: none;
  z-index: 3;
  animation: floatLeaves 8s ease-in-out infinite;
}

/* Watermark B behind content */
.philosophy-watermark {
  position: absolute;
  top: 10%;
  left: 20%;
  font-family: var(--about-font-serif);
  font-size: clamp(15rem, 30vw, 28rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 34, 61, 0.015);
  user-select: none;
  z-index: 1;
}

.philosophy-container {
  max-width:1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content Column */
.philosophy-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.philosophy-title {
  font-family: var(--about-font-serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--about-text-primary);
  margin: 0 0 45px 0;
  letter-spacing: -1px;
}

.philosophy-title span.text-orange {
  color: var(--about-accent-orange);
}

/* Cards Grid/Row */
.philosophy-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.philosophy-card {
  background-color: #ffffff;
  padding: 35px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 34, 61, 0.02);
  border: 1px solid rgba(15, 34, 61, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(15, 34, 61, 0.06);
  border-color: rgba(255, 94, 20, 0.12);
}

.philosophy-card-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #fff4ef; /* Extremely light orange-peach tint */
  color: var(--about-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.philosophy-card:hover .philosophy-card-icon-wrapper {
  transform: scale(1.08) rotate(5deg);
}

.philosophy-card-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--about-accent-orange);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: var(--about-font-sans);
}

.philosophy-card-title {
  font-family: var(--about-font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--about-text-primary);
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}

.philosophy-card-desc {
  font-size: 13px;
  color: var(--about-text-secondary);
  margin: 0;
  line-height: 1.4;
  font-family: var(--about-font-sans);
}

/* Right Image Capsule */
.philosophy-visual-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.philosophy-img-capsule {
  width: 100%;
  aspect-ratio: 1.15;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 34, 61, 0.08);
  border: 1px solid rgba(15, 34, 61, 0.04);
  background-color: #ffffff;
}

.philosophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-img-capsule:hover .philosophy-img {
  transform: scale(1.03);
}


/* Section 3: Our Founders Section */
.about-founders-section {
  padding: 100px 100px 0px 100px;
  background-color: var(--about-bg);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.founders-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.founders-dot-grid {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 70px;
  height: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  opacity: 0.5;
}

.founders-dot {
  width: 4px;
  height: 4px;
  background-color: #e5cfb8;
  border-radius: 50%;
}

.founders-watermark {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--about-font-sans);
  font-size: clamp(8rem, 16vw, 15rem);
  font-weight: 900;
  letter-spacing: 12px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 34, 61, 0.015);
  user-select: none;
  z-index: 1;
  text-transform: uppercase;
}

.founders-decor-ring {
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
}

.top-right-ring {
  top: -40px;
  right: -40px;
}

.bottom-left-ring {
  bottom: -45px;
  left: -45px;
}

.founders-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 70%);
  box-shadow: inset -2px -2px 6px rgba(15, 34, 61, 0.05), 0 4px 10px rgba(15, 34, 61, 0.03);
}

.bubble-1 {
  width: 45px;
  height: 45px;
  top: 15%;
  right: 15%;
  opacity: 0.6;
}

.bubble-2 {
  width: 25px;
  height: 25px;
  bottom: 20%;
  left: 8%;
  opacity: 0.45;
}

.founders-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.founders-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0px;
}

.founders-main-title {
  font-family: var(--about-font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--about-text-primary);
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.founders-main-title span.text-orange {
  color: var(--about-accent-orange);
}

.founders-section-desc {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--about-text-secondary);
  text-transform: uppercase;
}

/* Cards Grid */
.founders-cards-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.founder-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(15, 34, 61, 0.02);
  border: 1px solid rgba(15, 34, 61, 0.04);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 35px;
  align-items: center;
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 560px;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 34, 61, 0.06);
  border-color: rgba(255, 94, 20, 0.12);
}

/* Photo Area */
.founder-photo-area {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-photo-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.12;
  z-index: 1;
}

.glow-orange {
  background: radial-gradient(circle, var(--about-accent-orange) 0%, rgba(255, 255, 255, 0) 70%);
}

.glow-blue {
  background: radial-gradient(circle, #0077b5 0%, rgba(255, 255, 255, 0) 70%);
}

.founder-dots-bg {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  width: 32px;
  gap: 12px;
  opacity: 0.5;
  z-index: 2;
}

.dot-orange {
  top: 15px;
  left: 10px;
}

.dot-blue {
  top: 15px;
  left: 10px;
}

.f-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.dot-orange .f-dot {
  background-color: #ff9b26;
}

.dot-blue .f-dot {
  background-color: #5599ff;
}

.founder-image-wrapper {
  position: relative;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(15, 34, 61, 0.06);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card:hover .founder-img {
  transform: scale(1.05);
}

.founder-letter-wrapper {
  background: linear-gradient(135deg, #0e223d 0%, #0077b5 100%);
}

.founder-letter {
  font-family: var(--about-font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Details Area */
.founder-details-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-name {
  font-family: var(--about-font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--about-text-primary);
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
}

.founder-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--about-accent-orange);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.founder-quote-wrapper {
  position: relative;
  padding-left: 20px;
  margin-bottom: 24px;
}

.founder-quote-icon {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.founder-quote-icon.icon-orange {
  background-color: var(--about-accent-orange);
}

.founder-quote-icon.icon-blue {
  background-color: #0077b5;
}

.founder-quote-icon svg {
  transform: rotate(180deg);
}

.founder-quote {
  font-size: 14px;
  line-height: 1.5;
  color: var(--about-text-secondary);
  font-style: italic;
  margin: 0;
}

.founder-signature {
  font-family: var(--about-font-cursive);
  font-size: 24px;
  color: var(--about-text-primary);
  opacity: 0.85;
}


/* Section 4: Why Boyomo (More Than A Beverage Brand) Section */
.why-boyomo-section {
  padding: 120px 100px;
  background-color: var(--about-bg);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.why-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.why-floating-leaf-1 {
  position: absolute;
  top: 15%;
  left: 38%;
  font-size: 26px;
  pointer-events: none;
  z-index: 2;
  animation: floatLeaves 6s ease-in-out infinite;
}

.why-floating-ice {
  position: absolute;
  top: 10%;
  right: 15%;
  opacity: 0.8;
  z-index: 2;
  animation: floatImage 8s ease-in-out infinite;
}

.why-decor-ring-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.why-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 70px;
}

.why-main-title {
  font-family: var(--about-font-serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--about-text-primary);
  margin: 0 0 16px 0;
  letter-spacing: -1px;
}

.why-main-title span.text-orange {
  color: var(--about-accent-orange);
}

.why-section-desc {
  font-size: 15px;
  color: var(--about-text-secondary);
  font-family: var(--about-font-sans);
  margin: 0;
}

/* Cards Grid — Staggered Layout */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  align-items: end; /* align to bottom so stagger goes upward */
}

/* Base card: flex-column so image is on top, text below */
.why-card {
  border-radius: 32px;
  padding: 0 0 32px 0; /* no top padding — image takes the top space */
  position: relative;
  overflow: visible; /* image pops out above card top edge */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: var(--transition-smooth);
  box-shadow: 0 18px 45px rgba(15, 34, 61, 0.08);
  border: 1px solid rgba(15, 34, 61, 0.04);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(15, 34, 61, 0.12);
}

/* ── Image wrap: image sits at top, pops out above card boundary ── */
.why-card-img-wrap {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 10px;
  position: relative;
  z-index: 2;
  /* image is allowed to overflow above the card top */
  overflow: visible;
  margin-top: -95px; /* pull image up so it visually pops out */
}

.why-card-img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.why-card:hover .why-card-img {
  transform: translateY(-10px) scale(1.04);
}

/* ── Text content block at the bottom of the card ── */
.why-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

.why-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-family: var(--about-font-sans);
}

.card-goodness .why-card-num {
  color: var(--about-accent-orange);
}

.card-modern .why-card-num,
.card-fun .why-card-num {
  color: #ff9b26;
}

.why-card-title {
  font-family: var(--about-font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.why-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  opacity: 0.8;
}

/* ── Stagger: Card 2 (middle) rises up — cards 1 & 3 pushed down ── */
.why-cards-grid .why-card:nth-child(1) {
  margin-bottom: 0;     /* cards 1 & 3 sit at the bottom */
}

.why-cards-grid .why-card:nth-child(2) {
  margin-bottom: 60px;  /* middle card is the focal point — highest position */
}

.why-cards-grid .why-card:nth-child(3) {
  margin-bottom: 0;     /* cards 1 & 3 sit at the bottom */
}

/* ── Color Themes for Cards ── */
.card-modern {
  background: linear-gradient(160deg, #0e1e33 0%, #060e18 100%);
  color: #ffffff;
}
.card-modern .why-card-title { color: #ffffff; }
.card-modern .why-card-desc  { color: rgba(255, 255, 255, 0.65); opacity: 1; }
.card-modern:hover            { border-color: rgba(255, 94, 20, 0.25); }

.card-fun {
  background: linear-gradient(160deg, #9b3154 0%, #5d152d 100%);
  color: #ffffff;
}
.card-fun .why-card-title { color: #ffffff; }
.card-fun .why-card-desc  { color: rgba(255, 255, 255, 0.65); opacity: 1; }
.card-fun:hover            { border-color: rgba(255, 94, 20, 0.25); }

.card-goodness {
  background: linear-gradient(160deg, #f3ede2 0%, #e2d7c5 100%);
  color: var(--about-text-primary);
}
.card-goodness .why-card-title { color: var(--about-text-primary); }
.card-goodness .why-card-desc  { color: var(--about-text-secondary); opacity: 1; }
.card-goodness:hover            { border-color: rgba(255, 94, 20, 0.15); }



/* ========================================
   Section 6: Let's Grow Together
   ======================================== */
.about-grow-section {
  padding: 80px 80px 100px 80px;
  background-color: var(--about-bg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about-grow-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* ── Left Column ── */
.grow-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.grow-heading {
  font-family: var(--about-font-sans);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 850;
  line-height: 1.1;
  color: var(--about-text-primary);
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.grow-heading .text-orange {
  color: var(--about-accent-orange);
}

.grow-subtext {
  font-size: 15px;
  line-height: 1.7;
  color: var(--about-text-secondary);
  margin: 0 0 36px 0;
  font-family: var(--about-font-sans);
}

/* Single Row 4-Column Feature Icons */
.grow-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

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

.grow-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: rgba(255, 94, 20, 0.08);
  color: var(--about-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 94, 20, 0.12);
  transition: var(--transition-smooth);
}

.grow-feature-item:hover .grow-feature-icon {
  background-color: var(--about-accent-orange);
  color: #ffffff;
  transform: scale(1.06);
}

.grow-feature-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--about-text-primary);
  line-height: 1.4;
  font-family: var(--about-font-sans);
}

/* CTA Buttons */
.grow-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.grow-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff8c00 0%, #ff5e14 100%);
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 94, 20, 0.28);
  transition: var(--transition-smooth);
  font-family: var(--about-font-sans);
  white-space: nowrap;
}

.grow-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 94, 20, 0.38);
}

.grow-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--about-text-primary);
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1.5px solid rgba(15, 34, 61, 0.18);
  transition: var(--transition-smooth);
  font-family: var(--about-font-sans);
  white-space: nowrap;
}

.grow-btn-secondary:hover {
  border-color: var(--about-accent-orange);
  color: var(--about-accent-orange);
  transform: translateY(-3px);
}

/* ── Center Column: Splash Image ── */
.grow-col-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.grow-splash-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(15, 34, 61, 0.10));
  animation: floatImage 6s ease-in-out infinite;
}

/* ── Right Column: Available On Card ── */
.grow-col-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.grow-available-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 12px 35px rgba(15, 34, 61, 0.06);
  border: 1px solid rgba(15, 34, 61, 0.05);
  width: 100%;
}

.grow-available-title {
  font-family: var(--about-font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--about-text-primary);
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.grow-available-line {
  width: 40px;
  height: 2.5px;
  background-color: var(--about-accent-orange);
  border-radius: 2px;
  margin-bottom: 24px;
}

.grow-available-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grow-available-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.grow-avail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background-color: rgba(255, 94, 20, 0.07);
  color: var(--about-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 94, 20, 0.10);
}

.grow-avail-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.grow-avail-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--about-text-primary);
  font-family: var(--about-font-sans);
}

.grow-avail-sub {
  font-size: 12px;
  color: var(--about-text-secondary);
  font-family: var(--about-font-sans);
}

.grow-and-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--about-accent-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--about-font-sans);
}

/* Responsive */
@media (max-width: 1199px) {
  .about-grow-section {
    padding: 80px 40px 100px 40px;
  }
  .about-grow-container {
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .about-grow-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .grow-col-center {
    grid-column: 1 / -1;
    order: -1;
  }
  .grow-splash-img {
    max-width: 440px;
  }
}

@media (max-width: 767px) {
  .about-grow-section {
    padding: 60px 20px 80px 20px;
  }
  .about-grow-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grow-col-right {
    justify-content: flex-start;
  }
  .grow-col-center {
    grid-column: 1;
    order: 0;
  }
  .grow-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}


/* ========================================
   Section 5: About Banner Section
   ======================================== */
.about-banner-section {
  padding: 0 80px 100px 80px;
  position: relative;
  z-index: 2;
  background-color: var(--about-bg);
}

.about-banner-img-wrapper {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 34, 61, 0.10);
  position: relative;
  line-height: 0; /* remove inline gap below img */
}

.about-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-banner-img-wrapper:hover .about-banner-img {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1199px) {
  .about-banner-section {
    padding: 0 40px 80px 40px;
  }
}

@media (max-width: 767px) {
  .about-banner-section {
    padding: 0 20px 60px 20px;
  }
  .about-banner-img-wrapper {
    border-radius: 20px;
  }
}


/* Animations */
@keyframes rotateBadge {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

@keyframes floatShadow {
  0% { transform: scale(1); opacity: 0.45; filter: blur(4px); }
  50% { transform: scale(0.85); opacity: 0.22; filter: blur(7px); }
  100% { transform: scale(1); opacity: 0.45; filter: blur(4px); }
}

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


/* Responsiveness & Media Queries */
@media (max-width: 1199px) {
  .about-hero-container {
    padding: 40px 40px 80px 40px;
    gap: 40px;
  }
  .about-philosophy-section {
    padding: 80px 40px;
  }
  .about-founders-section {
    padding: 80px 40px;
  }
  .why-boyomo-section {
    padding: 80px 40px;
  }
  .philosophy-container {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 60px;
  }
  .about-content-left {
    align-items: center;
  }
  .about-desc {
    max-width: 600px;
  }
  .about-badge-container {
    display: none;
  }
  .about-hero-cta {
    margin-bottom: 30px;
  }
  .about-visual-right {
    min-height: auto;
    margin-top: 0px;
  }
  .about-podium-wrapper {
    margin-top: 0; /* Reset desktop pull-up */
    max-width: 500px;
  }
  .about-hero-img {
    max-width: 440px;
  }
  .about-podium {
    width: 380px;
    height: 52px;
    margin-top: -35px;
  }
  .about-podium-top {
    height: 30px;
  }
  .about-podium-front {
    top: 14px;
    height: 38px;
  }
  .about-podium-shadow {
    width: 250px;
    bottom: 30px;
  }

  .philosophy-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .philosophy-content-left {
    align-items: center;
  }
  .philosophy-title {
    text-align: center;
  }
  .philosophy-img-capsule {
    max-width: 600px;
    aspect-ratio: 1.5;
    border-radius: 30px;
  }
  .founders-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 30px;
  }
  .why-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 35px;
  }
  /* Reset Stagger for Mobile/Tablet Stack */
  .why-cards-grid .why-card:nth-child(1),
  .why-cards-grid .why-card:nth-child(2),
  .why-cards-grid .why-card:nth-child(3) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: auto; /* auto height so text never clips */
    padding: 0 0 35px 0;
  }
}

@media (max-width: 767px) {
  .philosophy-cards-row {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 380px;
    margin: 0 auto;
  }
  .about-grow-section {
    padding: 60px 24px 80px 24px !important;
    box-sizing: border-box !important;
  }
  .about-grow-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .grow-col-left {
    width: 100% !important;
    align-items: flex-start !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }
  .grow-col-left br {
    display: none !important; /* Let text flow naturally on mobile screens */
  }
  .grow-heading {
    text-align: left !important;
  }
  .grow-subtext {
    text-align: left !important;
  }
  .grow-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 16px !important;
    margin-bottom: 32px !important;
    box-sizing: border-box !important;
  }
  .grow-features-grid br {
    display: none !important;
  }
  .grow-feature-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .grow-feature-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 12px !important;
  }
  .grow-feature-label {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
  .grow-cta-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .grow-btn-primary,
  .grow-btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 575px) {
  .about-page-wrapper {
    padding-top: 80px;
  }
  .about-hero-container {
    padding: 20px 20px 10px 20px;
    gap: 15px;
  }
  .about-hero-cta {
    margin-bottom: 20px;
  }
  .about-visual-right {
    margin-top: 10px;
  }
  .about-philosophy-section {
    padding: 20px 20px;
  }
  .about-founders-section {
    padding: 35px 20px 0px 20px;
  }
  .why-boyomo-section {
    padding: 35px 20px;
  }
  .about-banner-section {
    padding: 0 20px 30px 20px !important;
  }
  .about-grow-section {
    padding: 30px 24px 50px 24px !important;
  }
  .about-dot-grid {
    left: 20px;
    top: 100px;
  }
  .about-main-title {
    font-size: 2.3rem;
  }
  .philosophy-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .philosophy-card {
    padding: 26px 20px;
  }
  .about-podium-wrapper {
    max-width: 320px;
  }
  .about-hero-img {
    max-width: 280px;
  }
  .about-podium {
    width: 240px;
    height: 36px;
    margin-top: -24px;
  }
  .about-podium-top {
    height: 20px;
  }
  .about-podium-front {
    top: 9px;
    height: 24px;
  }
  .about-podium-shadow {
    bottom: 22px;
    width: 140px;
  }
  .founders-main-title {
    font-size: 2.2rem;
  }
  .founder-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 20px;
    text-align: center;
    margin: 0 auto;
  }
  .founder-photo-area {
    max-width: 180px;
    margin: 0 auto;
  }
  .founder-details-area {
    align-items: center;
  }
  .founder-quote-wrapper {
    padding-left: 0;
    padding-top: 24px;
  }
  .founder-quote-icon {
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(180deg);
  }
  .why-main-title {
    font-size: 2.2rem;
  }
  .why-card {
    height: auto; /* prevent overflow clipping */
    padding: 0 0 35px 0;
  }
  .why-card-title {
    font-size: 22px;
  }
  .why-card-desc {
    font-size: 13px;
  }
  .grow-available-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Discover Our Story Modal Styles (Brand Theme)
   ========================================================================== */
.story-modal,
.story-modal * {
  font-family: 'Poppins', sans-serif !important;
}

.story-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.story-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.story-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 34, 61, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.story-modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 28px;
  width: 90%;
  max-width: 800px;
  max-height: 82vh;
  box-shadow: 0 25px 60px rgba(15, 34, 61, 0.18);
  border: 1px solid rgba(15, 34, 61, 0.08);
  padding: 40px;
  z-index: 2;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.story-modal.open .story-modal-content {
  transform: scale(1) translateY(0);
}

.story-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--about-text-secondary);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(15, 34, 61, 0.03);
}

.story-modal-close:hover {
  color: var(--about-accent-orange);
  background-color: rgba(255, 94, 20, 0.08);
  transform: rotate(90deg);
}

/* Modal Header styling */
.story-modal-header {
  margin-bottom: 25px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--about-border);
  padding-bottom: 15px;
}

.story-title {
  font-family: var(--about-font-sans);
  font-size: 26px;
  font-weight: 800;
  color: var(--about-text-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.story-title span.text-orange {
  color: var(--about-accent-orange);
}

/* Modal Body styling */
.story-modal-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-section-title {
  font-size: 16px;
  font-weight: 850;
  color: var(--about-text-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-accent {
  width: 6px;
  height: 18px;
  background-color: var(--about-accent-orange);
  border-radius: 4px;
  display: inline-block;
}

.vision-title .title-accent {
  background-color: #0044ff; /* Blue accent for Vision */
}

.mission-title .title-accent {
  background-color: var(--about-accent-green); /* Green accent for Mission */
}

.story-section p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--about-text-secondary);
  margin: 0;
}

/* Two column layout for Vision and Mission */
.story-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-col-card {
  background-color: var(--about-bg);
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 34, 61, 0.04);
}

.accent-paragraph {
  font-weight: 500;
  color: var(--about-text-primary) !important;
}

/* Custom Scrollbar for Modal content box */
.story-modal-content::-webkit-scrollbar {
  width: 6px;
}

.story-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.story-modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(15, 34, 61, 0.15);
  border-radius: 10px;
}

.story-modal-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 94, 20, 0.4);
}

/* Mobile responsive modal adjustments */
@media (max-width: 768px) {
  .story-modal-content {
    padding: 30px 20px;
    max-height: 88vh;
    border-radius: 24px;
  }
  
  .story-modal-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }
  
  .story-two-col {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .story-title {
    font-size: 22px;
  }
  
  .story-section-title {
    font-size: 15px;
  }
  
  .story-section p {
    font-size: 13.5px;
  }
}
