/* =====================================================
   ORCHID PACKAGED DRINKING WATER — MASTER STYLESHEET
   ===================================================== */

/* =====================================================
   GLOBAL
   ===================================================== */
:root {
  --orchid-purple: #43266b;
  --orchid-purple-dark: #211532;
  --orchid-blue: #29a9e8;
  --orchid-blue-light: #7cd4f7;
  --orchid-light-blue: #eaf8ff;
  --orchid-dark: #211532;
  --orchid-ink: #2b2340;
  --orchid-muted: #6b6580;
  --gradient-brand: linear-gradient(
    120deg,
    var(--orchid-purple) 0%,
    #3d5fae 45%,
    var(--orchid-blue) 100%
  );
  --gradient-soft: linear-gradient(
    180deg,
    var(--orchid-light-blue) 0%,
    #ffffff 100%
  );
  --shadow-soft: 0 20px 45px -20px rgba(33, 21, 50, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(41, 169, 232, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--orchid-ink);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
.display-font {
  font-family: var(--font-display);
  color: var(--orchid-purple-dark);
  font-weight: 700;
}

.text-brand-purple {
  color: var(--orchid-purple) !important;
}
.text-brand-blue {
  color: var(--orchid-blue) !important;
}
.bg-brand-light {
  background-color: var(--orchid-light-blue) !important;
}

a {
  text-decoration: none;
}

.section-pad {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orchid-blue);
  background: rgba(41, 169, 232, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-eyebrow i {
  color: var(--orchid-purple);
}

.section-heading {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  color: var(--orchid-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.btn-orchid-primary {
  background: var(--gradient-brand);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px -10px rgba(41, 169, 232, 0.55);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-orchid-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -10px rgba(41, 169, 232, 0.65);
  color: #fff;
}

.btn-orchid-outline {
  background: transparent;
  border: 2px solid var(--orchid-purple);
  color: var(--orchid-purple);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-orchid-outline:hover {
  background: var(--orchid-purple);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 12px 26px -10px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  color: #fff;
}

.divider-wave {
  display: block;
  width: 100%;
  line-height: 0;
}
.divider-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    scroll-behavior: auto !important;
    animation: none !important;
  }
}

/* =====================================================
   HEADER
   ===================================================== */
.orchid-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(33, 21, 50, 0.06);
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}
.orchid-header.scrolled {
  box-shadow: 0 8px 30px rgba(33, 21, 50, 0.12);
}

.orchid-header .navbar {
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.3s ease;
}
.orchid-header.scrolled .navbar {
  padding-top: 8px;
  padding-bottom: 8px;
}

.orchid-logo img {
  height: 52px;
  width: auto;
  transition: height 0.3s ease;
}
.orchid-header.scrolled .orchid-logo img {
  height: 42px;
}

.orchid-nav-link {
  font-weight: 600;
  color: var(--orchid-ink) !important;
  margin: 0 4px;
  padding: 8px 16px !important;
  border-radius: 50px;
  position: relative;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.orchid-nav-link:hover,
.orchid-nav-link.active {
  color: var(--orchid-purple) !important;
  background: var(--orchid-light-blue);
}

.orchid-toggle {
  border: none;
  background: var(--gradient-brand);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

/* =====================================================
   MOBILE SIDE MENU
   ===================================================== */
.side-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 36, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.side-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(82vw, 320px);
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid rgba(41, 169, 232, 0.15);
  box-shadow: 20px 0 60px rgba(33, 21, 50, 0.25);
  z-index: 1300;
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
}
.side-menu.active {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.side-menu-header img {
  height: 40px;
}

.side-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--orchid-light-blue);
  color: var(--orchid-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.side-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-menu-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  color: var(--orchid-ink);
  font-weight: 600;
  font-size: 1.02rem;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.side-menu-links a i {
  width: 22px;
  text-align: center;
  color: var(--orchid-blue);
}
.side-menu-links a:hover,
.side-menu-links a.active {
  background: var(--gradient-brand);
  color: #fff;
  transform: translateX(4px);
}
.side-menu-links a:hover i,
.side-menu-links a.active i {
  color: #fff;
}

.side-menu-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(43, 35, 64, 0.08);
}
.side-menu-footer .btn-whatsapp {
  width: 100%;
  justify-content: center;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  background: var(--gradient-brand);
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 130px;
  color: #fff;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.hero::before {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -100px;
}
.hero::after {
  width: 280px;
  height: 280px;
  bottom: -120px;
  left: -60px;
  background: rgba(41, 169, 232, 0.25);
}

.hero-drop {
  position: absolute;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.18);
  animation: floatDrop 6s ease-in-out infinite;
}
.hero-drop.d1 {
  width: 26px;
  height: 26px;
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}
.hero-drop.d2 {
  width: 16px;
  height: 16px;
  top: 32%;
  left: 78%;
  animation-delay: 1.2s;
}
.hero-drop.d3 {
  width: 20px;
  height: 20px;
  top: 65%;
  left: 22%;
  animation-delay: 2.1s;
}
.hero-drop.d4 {
  width: 14px;
  height: 14px;
  top: 74%;
  left: 88%;
  animation-delay: 0.7s;
}
.hero-drop.d5 {
  width: 22px;
  height: 22px;
  top: 10%;
  left: 55%;
  animation-delay: 1.8s;
}

@keyframes floatDrop {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-22px) rotate(45deg);
    opacity: 1;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: 35px;
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero h1 span {
  color: var(--orchid-blue-light);
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  max-width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
  border-radius: var(--radius-lg);
  animation: bottleFloat 5s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.hero-stats .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}

/* =====================================================
   ABOUT / BRAND INTRO
   ===================================================== */
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--orchid-light-blue);
  top: -30px;
  left: -30px;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge i {
  font-size: 1.6rem;
  color: var(--orchid-blue);
}
.about-badge .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--orchid-purple-dark);
}
.about-badge .lbl {
  font-size: 0.75rem;
  color: var(--orchid-muted);
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.feature-point .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orchid-light-blue);
  color: var(--orchid-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-point h6 {
  margin-bottom: 2px;
  font-family: var(--font-display);
}
.feature-point p {
  margin: 0;
  color: var(--orchid-muted);
  font-size: 0.92rem;
}

/* =====================================================
   FEATURES / WHY CHOOSE
   ===================================================== */
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  box-shadow: 0 8px 24px -14px rgba(33, 21, 50, 0.18);
  border: 1px solid rgba(41, 169, 232, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.feature-card .feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--gradient-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h5 {
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--orchid-muted);
  font-size: 0.94rem;
  margin-bottom: 0;
}

/* =====================================================
   PURIFICATION PROCESS
   ===================================================== */
.process-track {
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}
.process-step .step-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orchid-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--orchid-purple);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}
.process-step:hover .step-circle {
  background: var(--gradient-brand);
  color: #fff;
  transform: scale(1.08);
}
.process-step .step-number {
  position: absolute;
  top: -8px;
  right: 18px;
  background: var(--orchid-purple-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.process-step h6 {
  font-family: var(--font-display);
  margin-bottom: 6px;
  font-size: 0.98rem;
}
.process-step p {
  font-size: 0.84rem;
  color: var(--orchid-muted);
}

.process-line {
  position: absolute;
  top: 61px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orchid-blue) 0 8px,
    transparent 8px 16px
  );
  z-index: 1;
}

/* =====================================================
   TECHNOLOGY
   ===================================================== */
.tech-card {
  background: var(--orchid-light-blue);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  transition: transform 0.3s ease;
}
.tech-card:hover {
  transform: translateY(-6px);
}
.tech-card i {
  font-size: 1.8rem;
  color: var(--orchid-blue);
  margin-bottom: 14px;
}

.tech-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.tech-visual img {
  width: 100%;
  display: block;
}

/* =====================================================
   PRODUCTS
   ===================================================== */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 28px -16px rgba(33, 21, 50, 0.25);
  border: 1px solid rgba(41, 169, 232, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}
.product-card .product-media {
  background: linear-gradient(160deg, var(--orchid-light-blue), #fff);
  padding: 28px;
  text-align: center;
  position: relative;
}
.product-card .product-media img {
  max-height: 220px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 16px 18px rgba(41, 169, 232, 0.25));
  transition: transform 0.4s ease;
}
.product-card:hover .product-media img {
  transform: translateY(-6px) scale(1.03);
}

.product-card .size-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.product-card .product-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card h5 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.product-card p.desc {
  color: var(--orchid-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card .product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-card .product-actions .btn-orchid-outline,
.product-card .product-actions .btn-whatsapp {
  padding: 10px 18px;
  font-size: 0.86rem;
  flex: 1;
  justify-content: center;
}

/* =====================================================
   QUALITY / STATS
   ===================================================== */
.quality-stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  box-shadow: 0 8px 24px -16px rgba(33, 21, 50, 0.2);
  height: 100%;
}
.quality-stat-card i {
  font-size: 1.7rem;
  color: var(--orchid-blue);
  margin-bottom: 12px;
}
.quality-stat-card h6 {
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.quality-stat-card p {
  font-size: 0.85rem;
  color: var(--orchid-muted);
  margin: 0;
}

/* =====================================================
   MANUFACTURING FACILITY
   ===================================================== */
.manufacturing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.manufacturing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}
.manufacturing-list li i {
  color: var(--orchid-blue);
}

.facility-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.facility-image-wrap img {
  width: 100%;
  display: block;
}

/* =====================================================
   PURITY PROMISE
   ===================================================== */
.purity-promise {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.purity-promise .big-drop {
  width: 130px;
  height: 130px;
  margin: 0 auto 26px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.purity-promise .big-drop i {
  transform: rotate(-45deg);
  font-size: 2.6rem;
}
.purity-promise h2 {
  color: #fff;
}
.purity-promise p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto;
}

/* =====================================================
   CTA SECTIONS
   ===================================================== */
.cta-strip {
  background: var(--orchid-light-blue);
  border-radius: var(--radius-lg);
  padding: 54px 40px;
  text-align: center;
}
.cta-strip .btn-orchid-primary,
.cta-strip .btn-orchid-outline {
  margin: 6px;
}

.final-cta {
  background: var(--orchid-purple-dark);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(41, 169, 232, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(41, 169, 232, 0.18),
      transparent 55%
    );
}
.final-cta h2 {
  color: #fff;
  position: relative;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
  position: relative;
}
.final-cta .cta-buttons {
  position: relative;
}

/* =====================================================
   USE CASES
   ===================================================== */
.usecase-card {
  text-align: center;
  padding: 30px 16px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(41, 169, 232, 0.1);
  height: 100%;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.usecase-card:hover {
  transform: translateY(-6px);
  background: var(--orchid-light-blue);
}
.usecase-card i {
  font-size: 1.8rem;
  color: var(--orchid-purple);
  margin-bottom: 14px;
  display: block;
}
.usecase-card span {
  font-weight: 600;
  font-size: 0.92rem;
}

/* =====================================================
   COMPANY INFO
   ===================================================== */
.company-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px;
}
.company-info-card .row > div {
  margin-bottom: 18px;
}
.company-info-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orchid-blue);
  font-weight: 700;
  margin-bottom: 4px;
}
.company-info-card .value {
  font-weight: 600;
  color: var(--orchid-ink);
}
.compliance-note {
  font-size: 0.82rem;
  color: var(--orchid-muted);
  border-top: 1px dashed rgba(43, 35, 64, 0.15);
  margin-top: 26px;
  padding-top: 20px;
}

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header {
  background: var(--gradient-brand);
  color: #fff;
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  color: #fff;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.page-header p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.page-header .breadcrumb-orchid {
  display: inline-flex;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
}
.page-header .breadcrumb-orchid a {
  color: #fff;
  font-weight: 600;
}

/* =====================================================
   ABOUT PAGE EXTRAS
   ===================================================== */
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 22px -16px rgba(33, 21, 50, 0.2);
  transition: transform 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
}
.value-card i {
  font-size: 1.6rem;
  color: var(--orchid-blue);
  margin-bottom: 12px;
}

.mission-vision-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  color: #fff;
}
.mission-vision-card.mission {
  background: var(--gradient-brand);
}
.mission-vision-card.vision {
  background: var(--orchid-purple-dark);
}
.mission-vision-card i {
  font-size: 2rem;
  margin-bottom: 16px;
  opacity: 0.85;
}
.mission-vision-card h3 {
  color: #fff;
}
.mission-vision-card p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filter button {
  border: 1px solid rgba(41, 169, 232, 0.3);
  background: #fff;
  color: var(--orchid-ink);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}
.gallery-filter button.active,
.gallery-filter button:hover {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 26px -16px rgba(33, 21, 50, 0.3);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(33, 21, 50, 0) 40%,
    rgba(33, 21, 50, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay .cat {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.gallery-overlay i {
  color: var(--orchid-blue-light);
  margin-left: auto;
  font-size: 1.1rem;
}

/* Lightbox */
.orchid-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 9, 26, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 20px;
}
.orchid-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.orchid-lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.orchid-lightbox .lightbox-close,
.orchid-lightbox .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.25s ease;
}
.orchid-lightbox .lightbox-close:hover,
.orchid-lightbox .lightbox-nav:hover {
  background: var(--orchid-blue);
}
.orchid-lightbox .lightbox-close {
  top: 24px;
  right: 24px;
}
.orchid-lightbox .lightbox-nav.prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.orchid-lightbox .lightbox-nav.next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.orchid-lightbox .lightbox-caption {
  position: absolute;
  bottom: 28px;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-info-card {
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  height: 100%;
}
.contact-info-card h3 {
  color: #fff;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item .icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h6 {
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.contact-info-item p,
.contact-info-item a {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.contact-info-item a:hover {
  color: #fff;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}
.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 12px;
  border: 1px solid rgba(43, 35, 64, 0.15);
  padding: 12px 16px;
  font-size: 0.95rem;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--orchid-blue);
  box-shadow: 0 0 0 0.2rem rgba(41, 169, 232, 0.15);
}
.contact-form-card .invalid-feedback {
  font-size: 0.8rem;
}
.contact-form-card .form-control.is-invalid,
.contact-form-card .form-select.is-invalid {
  border-color: #e0455f;
}

.form-success-note {
  display: none;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #1f8a49;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 18px;
  font-size: 0.9rem;
}
.form-success-note.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* =====================================================
   FOOTER
   ===================================================== */
.orchid-footer {
  background: var(--orchid-purple-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
}
.orchid-footer .footer-logo img {
  height: 48px;
  margin-bottom: 16px;
}
.orchid-footer h6 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 22px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.orchid-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.orchid-footer ul li {
  margin-bottom: 12px;
}
.orchid-footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}
.orchid-footer ul li a:hover {
  color: var(--orchid-blue-light);
  padding-left: 4px;
}
.orchid-footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}
.orchid-footer .tagline {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orchid-blue-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.footer-social a:hover {
  background: var(--orchid-blue);
  transform: translateY(-3px);
}

.footer-compliance {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 0px;
  transform: translateY(-50%);
  z-index: 1400;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.65);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  animation: pulseRing 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* =====================================================
   SCROLL TOP BUTTON
   ===================================================== */
.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1400;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 12px 26px -8px rgba(41, 169, 232, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes rippleGrow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.blob-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  z-index: 0;
  pointer-events: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
  .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .hero {
    padding-top: 50px;
    padding-bottom: 90px;
    text-align: center;
  }
  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .process-line {
    display: none;
  }
  .about-badge {
    right: 6px;
    bottom: -18px;
    padding: 12px 16px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .page-header {
    padding: 110px 0 50px;
  }
  .purity-promise {
    padding: 50px 24px;
  }
  .final-cta {
    padding: 60px 0;
  }
  .company-info-card {
    padding: 30px 22px;
  }
  .contact-form-card {
    padding: 26px 20px;
  }
  .contact-info-card {
    padding: 32px 24px;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    left: 14px;
  }
  .scroll-top-btn {
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 18px;
  }
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .btn-orchid-primary,
  .btn-orchid-outline,
  .btn-whatsapp {
    padding: 12px 22px;
    font-size: 0.92rem;
  }
  .side-menu {
    width: 86vw;
  }
  .cta-strip {
    padding: 40px 20px;
  }
}

@media (max-width: 400px) {
  .orchid-logo img {
    height: 42px;
  }
  .hero-drop {
    display: none;
  }
}
