/* ============================================
   PRIVAT FOODS — PROFESSIONAL B2B STYLESHEET
   Light & Clean Theme
   ============================================ */

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

/* ── TOKENS ──────────────────────────────── */
:root {
  /* Brand */
  --brand:        #1A3A5C;
  --brand-md:     #1E4976;
  --brand-lt:     #2563A8;
  --sky:          #4A90B8;
  --sky-lt:       #6AAFD4;
  --white:#fff;
   --brand-sky:#4a90b8;
  /* Neutral palette – LIGHT */
  --bg:           #F7F9FB;
  --bg-alt:       #EEF3F7;
  --bg-card:      #FFFFFF;
  --surface:      #F0F5F9;
  --border:       #DDE6EE;
  --border-lt:    #C8D8E4;

  /* Text */
  --text-head:    #0D1C2E;
  --text-body:    #3A5168;
  --text-muted:   #7A95AA;
  --text-inv:     #FFFFFF;

  /* Accent */
  --accent:       #4a90b8;
  --accent-lt:    #D4B87A;
  --accent-dark:  #9A7D3E;

  /* Semantic */
  --green:        #22755A;
  --green-lt:     #E6F4EF;
  --green-text:   #1A5C47;

  /* Shadows */
  --shadow-xl:    0 24px 64px rgba(26,58,92,0.12);
  --shadow-lg:    0 12px 40px rgba(26,58,92,0.10);
  --shadow-md:    0 6px 20px rgba(26,58,92,0.08);
  --shadow-sm:    0 2px 8px  rgba(26,58,92,0.06);
  --shadow-card:  0 1px 3px  rgba(26,58,92,0.08), 0 8px 24px rgba(26,58,92,0.06);

  /* Shape */
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Gradients */
  --grad-brand:   linear-gradient(135deg, #1A3A5C 0%, #2563A8 100%);
  --grad-accent:  linear-gradient(135deg, #C4A35A 0%, #D4B87A 100%);
  --grad-hero:    linear-gradient(120deg, #0D1C2E 0%, #1A3A5C 60%, #1E4976 100%);
  --grad-subtle:  linear-gradient(180deg, #F7F9FB 0%, #EEF3F7 100%);
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
.rounded-20{
  border-radius: 20px;
}

/* ── TYPE ────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-head);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--sky);
  flex-shrink: 0;
}
.eyebrow.accent-ey { color: var(--sky); }
.eyebrow.accent-ey::before { background: var(--sky); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.body-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 300;
}
.divider {
  width: 36px; height: 2px;
  background: var(--sky);
  margin: 1.1rem 0 1.6rem;
  border-radius: 2px;
}
.divider.accent  { background: var(--sky); }
.divider.center  { margin-left: auto; margin-right: auto; }
.divider.green-d { background: var(--green); }

/* ── SPACING ─────────────────────────────── */
.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 56px 0; }
.section-pad-lg { padding: 120px 0; }
.bg-alt         { background: var(--bg-alt); }
.bg-brand       { background: var(--brand); }
.sec-t          { border-top: 1px solid var(--border); }
.sec-b          { border-bottom: 1px solid var(--border); }

/* ── NAVBAR ──────────────────────────────── */
.privat-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000; 
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.privat-nav.scrolled {
  box-shadow: 0 4px 24px rgba(26,58,92,0.1);
  border-bottom-color: var(--border-lt);
}


.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand-mark {
  width: 36px; height: 36px;
  background: var(--grad-brand);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.nav-brand-text { line-height: 1; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem; font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.02em; line-height: 1;
}
.nav-brand-name span { color: var(--sky); }
.nav-brand-sub {
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block; margin-top: 2px;
}
.navbar-nav .nav-link {
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-body);
  padding: 0.45rem 0.8rem !important;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  margin-bottom: 3px;
}
.navbar-nav .nav-link:hover { color: var(--brand); }
.navbar-nav .nav-link.active { color: var(--brand); font-weight: 600; }
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0.8rem; right: 0.8rem;
  height: 1.5px;
  background: var(--sky);
}
.dropdown-menu {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem;
  box-shadow: var(--shadow-lg);
  margin-top: 6px !important;
}
.dropdown-item {
  font-size: 0.8rem; font-weight: 400;
  color: var(--text-body);
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--surface); color: var(--brand); }
.btn-nav-cta {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-brand) !important;
  color: #fff !important;
  border-radius: 6px;
  padding: 0.45rem 1.15rem !important;
  border: none !important;
  text-align: center;
}
.btn-nav-cta.active{
  color: #fff !important;
}
.btn-nav-cta.active::after{
  background:transparent !important;
}
.btn-nav-cta:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: var(--shadow-md);  color: #fff !important;}
.navbar-toggler { border: 1px solid var(--border); border-radius: 6px; padding: 0.35rem 0.55rem; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,58,92,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── BUTTONS ─────────────────────────────── */
.btn-primary-pf {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-brand); color: #fff; border: none;
  border-radius: 6px; padding: 0.78rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary-pf:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,58,92,0.3); }

.btn-outline-pf {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color:var(--sky);
  border: 1.5px solid var(--brand-lt);
  border-radius: 6px; padding: 0.76rem 1.72rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-outline-pf:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }

.btn-outline-pf.on-dark {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-pf.on-dark:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.6); }

.btn-accent-pf {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-brand); color:#fff; border: none;
  border-radius: 6px; padding: 0.78rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
}
.btn-accent-pf:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(74,144,184,0.35); }

.btn-sky-pf {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,144,184,0.1); color: var(--sky);
  border: 1.5px solid rgba(74,144,184,0.3);
  border-radius: 6px; padding: 0.76rem 1.72rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
}
.btn-sky-pf:hover { background: var(--sky); color: #fff; border-color: var(--sky); transform: translateY(-2px); }

.btn-ghost-brand {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px; padding: 0.78rem 1.75rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
}
.btn-ghost-brand:hover { background: rgba(255,255,255,0.18); color: #fff; }

.arr { width: 14px; height: 14px; transition: transform 0.2s ease; flex-shrink: 0; }
.btn-primary-pf:hover .arr,
.btn-outline-pf:hover .arr,
.btn-accent-pf:hover .arr { transform: translateX(3px); }

/* ── HERO ────────────────────────────────── */
.hero-main {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-geo { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-geo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-geo::after {
  content: '';
  position: absolute; right: -5%; top: -20%;
  width: 60%; height: 130%;
  background: radial-gradient(ellipse at center, rgba(74,144,184,0.18) 0%, transparent 60%);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-line-v {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 10%, rgba(74,144,184,0.4) 50%, transparent 90%);
}
.hero-line-h {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,144,184,0.3), transparent);
}
.hero-content { position: relative; z-index: 2; padding: 72px 0px 88px 0px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky-lt); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; width: 20px; height: 1.5px;
  background: var(--sky-lt);
}
.hero-eyebrow .live-dot {
  width: 5px; height: 5px;
  background: var(--sky-lt); border-radius: 50%;
  animation: live-pulse 2.5s infinite;
}
@keyframes live-pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.9rem, 5.5vw, 5rem);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 1.5rem;
}
.hero-headline .thin   { font-weight: 400; color: rgba(255,255,255,0.7); }
.hero-headline .italic { font-style: italic; color: var(--sky-lt); }
.hero-subtext {
  font-size: 0.97rem; font-weight: 300;
  color: rgba(255,255,255,0.72); line-height: 1.8;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-stat-strip {
  display: flex; gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem; flex-wrap: wrap;
}
.hero-stat { flex: 1; min-width: 90px; padding-right: 2rem; border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700;
  color: #fff; line-height: 1; letter-spacing: -0.04em;
}
.hero-stat-num sup { font-size: 55%; color: var(--sky-lt); vertical-align: top; }
.hero-stat-label { font-size: 0.68rem; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.35rem; }

/* ── PORTFOLIO SECTION ───────────────────── */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.portfolio-card::before {
  content: ''; display: block; height: 0;
  background: var(--grad-brand); transition: height 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-lt);
}
.portfolio-card:hover::before { height: 2px; }
.portfolio-media {
  height: 200px; position: relative; overflow: hidden;
  background: var(--surface);
}
.portfolio-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: transform 0.55s ease, filter 0.4s ease;
}
.portfolio-card:hover .portfolio-media img { transform: scale(1.05); filter: brightness(0.75) saturate(0.9); }
.portfolio-num {
  position: absolute; bottom: 12px; left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.45); letter-spacing: 0.1em;
}
.portfolio-overlay-tag {
  position: absolute; top: 12px; left: 16px;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky-lt);
  background: rgba(13,28,46,0.7);
  border: 1px solid rgba(74,144,184,0.35);
  border-radius: 3px; padding: 0.2rem 0.6rem;
}
.portfolio-body { padding: 1.5rem; }
.portfolio-tag {
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 0.5rem;
}
.portfolio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--text-head); margin-bottom: 0.45rem;
}
.portfolio-text { font-size: 0.82rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.2rem; }
.portfolio-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sky); transition: var(--transition);
}
.portfolio-link:hover { gap: 10px; color: var(--brand); }
.portfolio-link svg { width: 12px; height: 12px; }

/* ── STATS ROW ───────────────────────────── */
.stat-row-item { text-align: center; padding: 2rem 1.5rem; border-right: 1px solid var(--border); }
.stat-row-item:last-child { border-right: none; }
.stat-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem,3.5vw,3.2rem);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--text-head); line-height: 1;
}
.stat-row-num sup { font-size: 55%; color: var(--sky); }
.stat-row-label { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.08em; margin-top: 0.35rem; text-transform: uppercase; }

/* ── IMPORT CARDS ────────────────────────── */
.import-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem; height: 100%;
  position: relative; overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.import-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-lt); }
.import-card-top-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-brand); }
.brand-year-badge {
  display: inline-block;
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sky);
  background: rgba( 74,144,184,0.1);
  border: 1px solid rgba( 74,144,184,0.25);
  border-radius: 4px; padding: 0.25rem 0.7rem; margin-bottom: 1.25rem;
 
}
.brand-icon-box {
  width: 50px; height: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--sky); letter-spacing: -0.02em; margin-bottom: 0.2rem;
}
.brand-origin { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 0.85rem; }
.brand-desc { font-size: 0.85rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1.4rem; font-weight: 300; }
.brand-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.4rem; }
.brand-tag {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-body); border-radius: 3px; padding: 0.2rem 0.6rem;
}

/* ── DISTRIBUTION CHANNELS ───────────────── */
.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition: var(--transition); height: 100%;
  box-shadow: var(--shadow-sm);
}
.channel-card:hover { border-color: var(--sky); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ch-icon {
  width: 42px; height: 42px;
  background: rgba(74,144,184,0.08);
  border: 1px solid rgba(74,144,184,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ch-icon svg { width: 18px; height: 18px; color: var(--sky); }
.ch-title { font-size: 0.92rem; font-weight: 600; color: var(--text-head); margin-bottom: 0.3rem; }
.ch-desc { font-size: 0.8rem; color: var(--text-body); line-height: 1.6; }

/* ── CSR SECTION ─────────────────────────── */
.csr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.csr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-lt); }
.csr-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.csr-icon svg { width: 24px; height: 24px; }
.csr-icon.green  { background: var(--green-lt); }
.csr-icon.blue   { background: rgba(74,144,184,0.1); }
.csr-icon.gold   { background: rgba(196,163,90,0.1); }
.csr-icon.teal   { background: rgba(20,150,130,0.1); }
.csr-icon.green  svg { color: var(--green); }
.csr-icon.blue   svg { color: var(--sky); }
.csr-icon.gold   svg { color: var(--accent-dark); }
.csr-icon.teal   svg { color: #149682; }
.csr-card-title { font-size: 1rem; font-weight: 600; color: var(--text-head); margin-bottom: 0.5rem; }
.csr-card-text  { font-size: 0.82rem; color: var(--text-body); line-height: 1.7; }
.csr-impact-strip {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex; gap: 0;
  flex-wrap: wrap;
  overflow: hidden; position: relative;
}
.csr-impact-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.csr-impact-item {
  flex: 1; min-width: 140px;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 1;
}
.csr-impact-item:last-child { border-right: none; }
.csr-impact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700;
  color: #fff; line-height: 1; letter-spacing: -0.04em;
}
.csr-impact-num sup { font-size: 55%; color: var(--sky-lt); }
.csr-impact-label { font-size: 0.68rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.35rem; }

/* ── WHY PRIVAT (VALUE PROP SECTION) ────── */
.value-row {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-row:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--border-lt);
  line-height: 1; flex-shrink: 0;
  min-width: 2.5rem; letter-spacing: -0.04em;
}
.value-title { font-size: 0.92rem; font-weight: 600; color: var(--text-head); margin-bottom: 0.3rem; }
.value-text  { font-size: 0.8rem; color: var(--text-body); line-height: 1.6; }

/* ── NEWS / PRESS TICKER ─────────────────── */
.news-ticker {
  background: var(--brand);
  overflow: hidden; padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-inner {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  gap: 0;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.75rem 2.5rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.ticker-item .ticker-dot { width: 4px; height: 4px; background: var(--sky-lt); border-radius: 50%; flex-shrink: 0; }
.ticker-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky-lt); margin-right: 0.5rem;
}

/* ── TESTIMONIAL / PARTNERSHIP SECTION ───── */

.partner-logo-row {
  display: flex; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.partner-logo-item {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.5; transition: var(--transition); filter: grayscale(1);
}
.partner-logo-item:hover { opacity: 0.85; filter: grayscale(0); }
.partner-logo-badge {
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  color:var(--sky);background:rgba(74,144,184,0.12);border-color:rgba(74,144,184,0.3);
  border-radius: 6px;
  padding: 0 1rem;
  display: flex; align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text-head); letter-spacing: -0.01em;
}
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.quote-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 1;
  color: var(--border); position: absolute;
  top: 1rem; left: 1.75rem;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--text-head); line-height: 1.65;
  margin-bottom: 1.25rem; padding-top: 1rem;
}
.quote-author { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.06em; }

/* ── FEAT BLOCKS ─────────────────────────── */
.feat-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.feat-block:hover { border-color: var(--sky); box-shadow: var(--shadow-md); }
.feat-icon {
  width: 38px; height: 38px;
  background: rgba(74,144,184,0.08);
  border: 1px solid rgba(74,144,184,0.18);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-icon svg { width: 17px; height: 17px; color: var(--sky); }
.feat-title { font-size: 0.88rem; font-weight: 600; color: var(--text-head); margin-bottom: 0.2rem; }
.feat-desc  { font-size: 0.77rem; color: var(--text-body); line-height: 1.55; }

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  position: relative; padding-top: 70px; overflow: hidden;
  background: var(--grad-hero);
}
.page-hero-inner { position: relative; z-index: 2; padding: 88px 0 72px; }
.page-hero-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.page-hero-geo::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero-geo::after {
  content: ''; position: absolute; right: 0; top: 0; width: 45%; height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,144,184,0.15) 0%, transparent 65%);
}
.page-hero-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.breadcrumb-pf {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.breadcrumb-pf a { color: rgba(255,255,255,0.6); }
.breadcrumb-pf a:hover { color: var(--sky-lt); }
.breadcrumb-pf .sep { width: 3px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 50%; }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem,4.5vw,3.8rem); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.025em; color: #fff; margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  font-weight: 300; line-height: 1.8; max-width: 560px; margin-bottom: 2rem;
}

/* ── INNER PAGE MENU ─────────────────────── */
.menu-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.menu-section-head { padding: 1.1rem 1.75rem; border-bottom: 1px solid var(--border); background: var(--surface); font-family: 'Cormorant Garamond',serif; font-size: 1.15rem; font-weight: 700; color: var(--text-head); }
.menu-item-row { padding: 0.9rem 1.75rem; border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; transition: background 0.2s ease; }
.menu-item-row:hover { background: var(--surface); }
.menu-item-row:last-child { border-bottom: none; }
.menu-item-name { font-size: 0.88rem; font-weight: 500; color: var(--text-head); margin-bottom: 0.15rem; }
.menu-item-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.veg-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 5px; vertical-align: middle; }
.dot-veg  { background: #22C55E; }
.dot-nveg { background: #EF4444; }
 .logo{
  width: 125px;
 }
/* ── PROCESS ─────────────────────────────── */
.process-step { display: flex; gap: 1.5rem; position: relative; padding-bottom: 2rem; }
.process-step:not(:last-child)::before { content: ''; position: absolute; left: 20px; top: 44px; bottom: 0; width: 1px; background: var(--border); }
.process-num { width: 42px; height: 42px; background: var(--bg-card); border: 1.5px solid var(--border-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; font-weight: 700; color: var(--sky); flex-shrink: 0; z-index: 1; box-shadow: var(--shadow-sm); }
.process-title { font-size: 0.92rem; font-weight: 600; color: var(--text-head); margin-bottom: 0.3rem; }
.process-desc  { font-size: 0.8rem; color: var(--text-body); line-height: 1.65; }

/* ── WATER / FOOD COURT (inner pages) ───── */
.vendor-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); height: 100%; box-shadow: var(--shadow-sm); }
.vendor-card:hover { transform: translateY(-4px); border-color: var(--sky); box-shadow: var(--shadow-md); }
.vendor-top { height: 130px; background: var(--surface); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); }
.vendor-top svg { width: 30px; height: 30px; color: var(--text-muted); }
.vendor-body-vc { padding: 1rem 1.1rem; }
.vendor-cat-vc { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.3rem; }
.vendor-name-vc { font-family: 'Cormorant Garamond',serif; font-size: 1.05rem; font-weight: 700; color: var(--text-head); margin-bottom: 0.2rem; }
.vendor-desc-vc { font-size: 0.74rem; color: var(--text-body); line-height: 1.5; }
.floor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.floor-stall { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 0.5rem; text-align: center; transition: var(--transition); }
.floor-stall:hover { border-color: var(--sky); }
.floor-stall svg { width: 20px; height: 20px; color: var(--text-muted); margin: 0 auto 4px; }
.floor-stall-name { font-size: 0.65rem; font-weight: 500; color: var(--text-body); }
.water-prod { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); }
.water-prod:hover { border-color: var(--sky); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.water-prod.featured { border-color: var(--sky); }
.water-prod-icon { width: 48px; height: 48px; margin: 0 auto 0.75rem; background: rgba(74,144,184,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.water-prod-icon svg { width: 24px; height: 24px; color: var(--sky); }
.water-prod-size { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; font-weight: 700; color: var(--text-head); }
.water-prod-label { font-size: 0.71rem; color: var(--text-muted); margin-top: 0.2rem; }
.water-prod-badge { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); background: rgba(74,144,184,0.1); border: 1px solid rgba(74,144,184,0.2); border-radius: 50px; padding: 0.12rem 0.5rem; margin-top: 0.4rem; display: inline-block; }

/* ── FOOTER ──────────────────────────────── */
.privat-footer { background: var(--text-head); border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 0 0; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.footer-brand-mk { width: 34px; height: 34px; background: var(--grad-brand); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.footer-brand-mk svg { width: 17px; height: 17px; }
.footer-brand-nm { font-family: 'Cormorant Garamond',serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.footer-brand-nm span { color: var(--sky-lt); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 270px; margin-bottom: 1.5rem; }
.footer-col-head { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.1rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-links a:hover { color: var(--sky-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; margin-top: 4rem; font-size: 0.72rem; color: rgba(255,255,255,0.3); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.3rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.72rem; }
.footer-legal a:hover { color: var(--sky-lt); }

/* ── SCROLL ANIMATIONS ───────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}
.d4{transition-delay:.32s} .d5{transition-delay:.40s}


/******************for powered by PHG********************/
.powered-by-privat{
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 9999;
    background: var(--grad-hero);
    color: #ffffff;  
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    transition: all 0.35s ease;
    cursor: default;
    opacity: 0.9;
}

.powered-by-privat strong{
    font-weight: 500;
    color: #85e7d3;
}

.powered-by-privat:hover{
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    opacity: 1;
}


 /* ── Form styles ──────────────────── */
    .form-label {
      font-size: 0.73rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text-body); margin-bottom: 0.4rem;
    }
    .form-control, .form-select {
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem; color: var(--text-head);
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      border-radius: 8px; padding: 0.68rem 0.95rem;
      transition: border-color 0.22s ease, box-shadow 0.22s ease;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--sky);
      box-shadow: 0 0 0 3px rgba(74,144,184,0.12);
      background: #fff; outline: none;
    }
    .form-control::placeholder { color: var(--text-muted); font-weight: 300; }
    .form-control.is-invalid, .form-select.is-invalid { border-color: #dc3545; }
    .invalid-feedback { font-size: 0.71rem; color: #dc3545; }
    textarea.form-control { resize: vertical; min-height: 110px; }

    /* ── Business chips ─────────────── */
    .biz-chip-input { display: none; }
    .biz-chip-label {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      border-radius: 7px; padding: 0.5rem 0.9rem;
      cursor: pointer; transition: var(--transition); user-select: none;
    }
    .biz-chip-label:hover { border-color: var(--sky); background: rgba(74,144,184,0.05); }
    .biz-chip-input:checked + .biz-chip-label {
      border-color: var(--sky); background: rgba(74,144,184,0.1);
    }
    .chip-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--border-lt); flex-shrink: 0; transition: background 0.2s;
    }
    .biz-chip-input:checked + .biz-chip-label .chip-dot { background: var(--sky); }
    .chip-text { font-size: 0.8rem; font-weight: 500; color: var(--text-body); transition: color 0.2s; }
    .biz-chip-input:checked + .biz-chip-label .chip-text { color: var(--brand); font-weight: 600; }
    .biz-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
    .form-cat-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--text-muted);
      display: block; margin-bottom: 0.5rem;
    }

    /* ── Success ────────────────────── */
    .form-success {
      display: none; text-align: center;
      padding: 4rem 2rem;
    }
    .form-success.show { display: block; }
    .form-success-icon {
      width: 68px; height: 68px;
      background: rgba(34,117,90,0.1);
      border: 2px solid rgba(34,117,90,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
    }
    .form-success-icon svg { width: 30px; height: 30px; color: #22755A; }
    .form-success-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 700; color: var(--text-head); margin-bottom: 0.6rem;
    }
    .form-success-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; max-width: 460px; margin: 0 auto; }

    /* ── Why partner cards ──────────── */
    .why-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem; height: 100%;
      transition: var(--transition); box-shadow: var(--shadow-sm);
    }
    .why-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .why-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 700;
      color: var(--border-lt); line-height: 1; margin-bottom: 0.75rem;
    }
    .why-title { font-size: 0.92rem; font-weight: 600; color: var(--text-head); margin-bottom: 0.35rem; }
    .why-text  { font-size: 0.82rem; color: var(--text-body); line-height: 1.65; }

    /* ── Form card ──────────────────── */
    .form-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .form-card-header {
      background: var(--grad-hero);
      padding: 2.5rem 2.5rem 2rem;
      position: relative; overflow: hidden;
    }
    .form-card-header::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 40px 40px; pointer-events: none;
    }
    .form-card-header-content { position: relative; z-index: 1; }
    .form-card-eyebrow {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--sky-lt);
      display: flex; align-items: center; gap: 8px; margin-bottom: 0.6rem;
    }
    .form-card-eyebrow::before { content:''; width:16px; height:1.5px; background:var(--sky-lt); }
    .form-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem; font-weight: 700; color: #fff;
      letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.5rem;
    }
    .form-card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 300; }
    .form-card-body { padding: 2.5rem; background: var(--bg); }
    .form-card-footer { padding: 1.25rem 2.5rem; background: var(--bg-alt); border-top: 1px solid var(--border); }

    /* Cancel btn */
    .btn-cancel {
      display: inline-flex; align-items: center; gap: 6px;
      background: transparent; color: var(--text-muted);
      border: 1.5px solid var(--border);
      border-radius: 6px; padding: 0.68rem 1.25rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase;
      transition: var(--transition); cursor: pointer;
    }
    .btn-cancel:hover { color: var(--text-head); border-color: var(--text-muted); }

    /* Contact info strip */
    .contact-strip {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-sm);
    }
    .contact-row {
      display: flex; align-items: flex-start;
      gap: 1rem; padding: 0.85rem 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(74,144,184,0.08);
      border: 1px solid rgba(74,144,184,0.18);
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
    }
    .contact-icon svg { width: 16px; height: 16px; color: var(--sky); }
    .contact-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
    .contact-value { font-size: 0.88rem; font-weight: 500; color: var(--text-head); }

    /* ──------------------ Timeline about Us-------------------------- ─── */
    .timeline { position: relative; padding-left: 2rem; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 0; top: 8px; bottom: 8px;
      width: 1.5px;
      background: linear-gradient(to bottom, var(--sky), var(--border));
    }
    .timeline-item {
      position: relative;
      padding-bottom: 2.5rem;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-dot {
      position: absolute;
      left: -2.45rem; top: 4px;
      width: 14px; height: 14px;
      background: var(--bg-card);
      border: 2px solid var(--sky);
      border-radius: 50%;
    }
    .timeline-year {
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--sky); margin-bottom: 0.35rem;
    }
    .timeline-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 700;
      color: var(--text-head); margin-bottom: 0.3rem;
    }
    .timeline-text {
      font-size: 0.83rem; color: var(--text-body);
      line-height: 1.7; font-weight: 300;
    }

    /* ── Team card ─── */
    .team-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-lt); }
    .team-avatar {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--grad-brand);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      color: #fff;
      border: 3px solid var(--bg-alt);
    }
    .team-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 700;
      color: var(--text-head); margin-bottom: 0.2rem;
    }
    .team-role {
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--sky); margin-bottom: 0.75rem;
    }
    .team-bio { font-size: 0.82rem; color: var(--text-body); line-height: 1.65; }

    /* ── Value card ─── */
    .value-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      height: 100%;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .value-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .value-card-icon {
      width: 44px; height: 44px;
      background: rgba(74,144,184,0.08);
      border: 1px solid rgba(74,144,184,0.18);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1rem;
    }
    .value-card-icon svg { width: 20px; height: 20px; color: var(--sky); }
    .value-card-title { font-size: 0.95rem; font-weight: 600; color: var(--text-head); margin-bottom: 0.4rem; }
    .value-card-text  { font-size: 0.82rem; color: var(--text-body); line-height: 1.65; }

/************************for user model form and warter*********************/
 /* ── Modal ─────────────────────────────── */
    .enquiry-modal .modal-content {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(26,58,92,0.22);
    }
    .enquiry-modal .modal-header {
      background: var(--grad-hero);
      border: none;
      padding: 2rem 2rem 1.6rem;
      position: relative;
    }
    .enquiry-modal .modal-header::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }
    .modal-brand-mark {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; position: relative; z-index: 1;
    }
    .modal-title-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 700;
      color: #fff; letter-spacing: -0.02em; line-height: 1.1;
      position: relative; z-index: 1;
    }
    .modal-title-sub {
      font-size: 0.73rem; color: rgba(255,255,255,0.5);
      margin-top: 3px; font-weight: 300;
      position: relative; z-index: 1;
    }
    .enquiry-modal .btn-close {
      filter: invert(1) grayscale(1) brightness(2);
      opacity: 0.55; position: relative; z-index: 1;
    }
    .enquiry-modal .modal-body {
      background: var(--bg);
      padding: 2rem 2rem 1.5rem;
    }
    .enquiry-modal .modal-footer {
      background: var(--bg-alt);
      border-top: 1px solid var(--border);
      padding: 1.1rem 2rem;
    }

    /* Form elements */
    .form-label {
      font-size: 0.73rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text-body); margin-bottom: 0.4rem;
    }
    .form-control, .form-select {
      font-family: 'Outfit', sans-serif;
      font-size: 0.87rem; color: var(--text-head);
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 0.62rem 0.9rem;
      transition: border-color 0.22s ease, box-shadow 0.22s ease;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--sky);
      box-shadow: 0 0 0 3px rgba(74,144,184,0.13);
      background: #fff; outline: none;
    }
    .form-control::placeholder { color: var(--text-muted); font-weight: 300; }
    .form-control.is-invalid, .form-select.is-invalid { border-color: #dc3545; }
    .invalid-feedback { font-size: 0.71rem; color: #dc3545; }
    textarea.form-control { resize: vertical; min-height: 88px; }

    /* Business chip multi-select */
    .biz-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
    .biz-chip-input { display: none; }
    .biz-chip-label {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      border-radius: 7px; padding: 0.48rem 0.85rem;
      cursor: pointer; transition: var(--transition); user-select: none;
    }
    .biz-chip-label:hover { border-color: var(--sky); background: rgba(74,144,184,0.05); }
    .biz-chip-input:checked + .biz-chip-label {
      border-color: var(--sky);
      background: rgba(74,144,184,0.1);
    }
    .chip-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--border-lt); flex-shrink: 0;
      transition: background 0.2s ease;
    }
    .biz-chip-input:checked + .biz-chip-label .chip-dot { background: var(--sky); }
    .chip-text {
      font-size: 0.78rem; font-weight: 500; color: var(--text-body);
      transition: color 0.2s ease;
    }
    .biz-chip-input:checked + .biz-chip-label .chip-text { color: var(--brand); font-weight: 600; }

    .form-cat-label {
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text-muted); display: block; margin-bottom: 0.5rem;
    }

    /* Success screen */
    .form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
    .form-success.show { display: block; }
    .form-success-icon {
      width: 60px; height: 60px;
      background: rgba(34,117,90,0.1);
      border: 2px solid rgba(34,117,90,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
    }
    .form-success-icon svg { width: 26px; height: 26px; color: #22755A; }
    .form-success-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      color: var(--text-head); margin-bottom: 0.5rem;
    }
    .form-success-text { font-size: 0.84rem; color: var(--text-body); line-height: 1.75; }

    /* Product cards — large, 2 items */
    .water-prod-lg {
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      height: 100%;
      position: relative; overflow: hidden;
    }
    .water-prod-lg::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: var(--grad-brand);
      opacity: 0; transition: opacity 0.3s ease;
    }
    .water-prod-lg:hover { border-color: var(--sky); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .water-prod-lg:hover::before { opacity: 1; }
    .water-prod-lg.featured { border-color: var(--sky); }
    .water-prod-lg.featured::before { opacity: 1; }
    .wp-icon {
      width: 72px; height: 72px;
      margin: 0 auto 1.5rem;
      background: rgba(74,144,184,0.08);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
    }
    .wp-icon svg { width: 36px; height: 36px; }
    .wp-size {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; font-weight: 700;
      color: var(--text-head); line-height: 1; letter-spacing: -0.04em;
    }
    .wp-label {
      font-size: 0.78rem; color: var(--text-muted);
      margin-top: 0.35rem; letter-spacing: 0.04em;
    }
    .wp-badge {
      display: inline-block; margin-top: 0.85rem;
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--sky); background: rgba(74,144,184,0.1);
      border: 1px solid rgba(74,144,184,0.25);
      border-radius: 50px; padding: 0.2rem 0.7rem;
    }
    .wp-desc {
      font-size: 0.83rem; color: var(--text-body);
      line-height: 1.7; margin-top: 1rem; font-weight: 300;
    }
    .wp-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 1rem; }
    .wp-tag {
      font-size: 0.6rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      background: var(--surface); border: 1px solid var(--border);
      color: var(--text-muted); border-radius: 4px; padding: 0.18rem 0.55rem;
    }
    .wp-tag.sky { background: rgba(74,144,184,0.08); border-color: rgba(74,144,184,0.2); color: var(--sky); }

    /* Hero image */
    .rounded-20 { border-radius: 20px; }

    /* Cancel button in footer */
    .btn-cancel {
      display: inline-flex; align-items: center; gap: 6px;
      background: transparent; color: var(--text-muted);
      border: 1.5px solid var(--border);
      border-radius: 6px; padding: 0.6rem 1.25rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.06em; text-transform: uppercase;
      transition: var(--transition); cursor: pointer;
    }
    .btn-cancel:hover { border-color: var(--text-muted); color: var(--text-head); }
    /***********************end*****************************/
/* Mobile optimization */
@media (max-width: 576px){
    .powered-by-privat{
        right: 12px;
        bottom: 12px;
        font-size: 11px;
        padding: 8px 14px;
    }
}


/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 991px) {
  .hero-main { min-height: auto; }
  .hero-content { padding: 56px 0 64px 0px; }
  .hero-stat { min-width: 80px; padding-right: 1.2rem; }
  .stat-row-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-row-item:last-child { border-bottom: none; }
  .hero-height img{
    max-height: 300px;
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 44px 0; }
  .hero-content { padding: 52px 0 60px 0px; }
  .page-hero-inner { padding: 72px 0 60px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .btn-primary-pf,.btn-outline-pf,.btn-accent-pf,.btn-sky-pf,.btn-ghost-brand { width: 100%; justify-content: center; }
  .hero-stat-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stat { border-right: none !important; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1) !important; }
  .hero-stat:last-child,.hero-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .floor-grid { grid-template-columns: repeat(2,1fr); }
  .csr-impact-strip { flex-direction: column; gap: 1.5rem; }
  .csr-impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
  .csr-impact-item:last-child { border-bottom: none; padding-bottom: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .partner-logo-row { gap: 1.5rem; justify-content: center; }
  

}


/**********************csr*******************************/
  /* ── Trust banner ─────────────────────── */
    .trust-banner {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 3rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }
    .trust-banner::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--grad-brand);
    }
    .trust-emblem {
      width: 96px; height: 96px;
      background: var(--grad-brand);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-emblem svg { width: 44px; height: 44px; }
    .trust-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-weight: 700;
      color: var(--text-head);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }
    .trust-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 400;
      letter-spacing: 0.04em;
    }
    .trust-tagline {
      font-size: 0.88rem;
      color: var(--text-body);
      font-weight: 300;
      line-height: 1.7;
      margin-top: 0.75rem;
      max-width: 520px;
    }

    /* ── Connection section ───────────────── */
    .connection-card {
      background: var(--grad-hero);
      border-radius: var(--radius-xl);
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }
    .connection-card::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none;
    }
    .connection-card > * { position: relative; z-index: 1; }
    .connection-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
      line-height: 1.12;
      margin-bottom: 1.25rem;
    }
    .connection-body {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.68);
      line-height: 1.85;
      font-weight: 300;
      max-width: 640px;
    }
    .connection-divider {
      width: 40px; height: 1.5px;
      background: var(--sky-lt);
      margin: 1.5rem 0;
      border-radius: 1px;
    }

    /* ── Focus area cards ─────────────────── */
    .focus-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.25rem 2rem;
      height: 100%;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }
    .focus-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--grad-brand);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .focus-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--border-lt);
    }
    .focus-card:hover::after { opacity: 1; }

    .focus-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--border);
      line-height: 1;
      margin-bottom: 1.25rem;
      letter-spacing: -0.04em;
    }
    .focus-icon {
      width: 50px; height: 50px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }
    .focus-icon svg { width: 22px; height: 22px; }
    .focus-icon.sky   { background: rgba(74,144,184,0.1);  border: 1px solid rgba(74,144,184,0.2); }
    .focus-icon.sky svg   { color: var(--sky); }
    .focus-icon.green { background: rgba(34,117,90,0.1);   border: 1px solid rgba(34,117,90,0.2); }
    .focus-icon.green svg { color: #22755A; }
    .focus-icon.teal  { background: rgba(20,150,130,0.1);  border: 1px solid rgba(20,150,130,0.2); }
    .focus-icon.teal svg  { color: #149682; }
    .focus-icon.gold  { background: rgba(196,163,90,0.1);  border: 1px solid rgba(196,163,90,0.2); }
    .focus-icon.gold svg  { color: var(--accent-dark); }

    .focus-area {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }
    .focus-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--text-head);
      line-height: 1.15;
      margin-bottom: 0.85rem;
      letter-spacing: -0.01em;
    }
    .focus-body {
      font-size: 0.85rem;
      color: var(--text-body);
      line-height: 1.8;
      font-weight: 300;
    }

    /* ── Quote pull ───────────────────────── */
    .pull-quote {
      background: var(--bg-alt);
      border-left: 3px solid var(--sky);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 1.75rem 2rem;
    }
    .pull-quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.2rem, 2.2vw, 1.6rem);
      font-style: italic;
      color: var(--text-head);
      line-height: 1.5;
      margin-bottom: 0.75rem;
    }
    .pull-quote-attr {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── Info row ─────────────────────────── */
    .info-row {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--border);
    }
    .info-row:first-child { padding-top: 0; }
    .info-row:last-child  { border-bottom: none; padding-bottom: 0; }
    .info-row-icon {
      width: 38px; height: 38px;
      background: rgba(74,144,184,0.08);
      border: 1px solid rgba(74,144,184,0.18);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .info-row-icon svg { width: 16px; height: 16px; color: var(--sky); }
    .info-row-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 3px;
    }
    .info-row-value {
      font-size: 0.88rem;
      color: var(--text-head);
      font-weight: 500;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .trust-banner { flex-direction: column; gap: 1.5rem; padding: 2rem; }
      .trust-emblem { width: 72px; height: 72px; border-radius: 14px; }
      .trust-emblem svg { width: 34px; height: 34px; }
      .connection-card { padding: 2rem; }
    
    }
/*************************privacy policy***********************/
    /* ── Legal page layout ─────────────────── */
    .legal-wrap {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 3rem;
      align-items: start;
    }

    /* Sticky sidebar TOC */
    .legal-toc {
      position: sticky;
      top: 96px;
    }
    .legal-toc-title {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
    .legal-toc-list { list-style: none; padding: 0; margin: 0; }
    .legal-toc-list li { margin-bottom: 0.1rem; }
    .legal-toc-list a {
      font-size: 0.8rem;
      font-weight: 400;
      color: var(--text-body);
      padding: 0.35rem 0.75rem;
      display: block;
      border-radius: 6px;
      border-left: 2px solid transparent;
      transition: var(--transition);
    }
    .legal-toc-list a:hover,
    .legal-toc-list a.active {
      color: var(--brand);
      background: rgba(74,144,184,0.07);
      border-left-color: var(--sky);
    }
    .legal-toc-updated {
      margin-top: 1.5rem;
      padding: 0.75rem 0.85rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-size: 0.72rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .legal-toc-updated strong { color: var(--text-body); display: block; margin-bottom: 2px; }

    /* Main content */
    .legal-content { min-width: 0; }
    .legal-section {
      margin-bottom: 3.5rem;
      scroll-margin-top: 96px;
    }
    .legal-section:last-child { margin-bottom: 0; }
    .legal-section-num {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 0.4rem;
    }
    .legal-section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--text-head);
      margin-bottom: 1rem;
      letter-spacing: -0.015em;
      line-height: 1.15;
    }
    .legal-divider {
      width: 30px; height: 2px;
      background: var(--sky);
      margin-bottom: 1.25rem;
      border-radius: 2px;
    }
    .legal-body {
      font-size: 0.9rem;
      color: var(--text-body);
      line-height: 1.85;
      font-weight: 300;
    }
    .legal-body p { margin-bottom: 1rem; }
    .legal-body p:last-child { margin-bottom: 0; }
    .legal-body strong { font-weight: 600; color: var(--text-head); }
    .legal-body ul {
      padding-left: 1.25rem;
      margin-bottom: 1rem;
    }
    .legal-body ul li {
      margin-bottom: 0.45rem;
      line-height: 1.75;
    }
    .legal-body a { color: var(--sky); text-decoration: underline; text-underline-offset: 3px; }
    .legal-body a:hover { color: var(--brand); }

    /* Info box */
    .legal-infobox {
      background: rgba(74,144,184,0.06);
      border: 1px solid rgba(74,144,184,0.18);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      margin: 1.25rem 0;
    }
    .legal-infobox p { margin: 0; font-size: 0.87rem; color: var(--text-body); line-height: 1.75; }
    .legal-infobox strong { color: var(--brand); }

    /* Contact card at bottom */
    .legal-contact-card {
      background: var(--grad-hero);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .legal-contact-card::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }
    .legal-contact-card > * { position: relative; z-index: 1; }
    .legal-contact-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 700;
      color: #fff; margin-bottom: 0.5rem;
    }
    .legal-contact-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; font-weight: 300; }

    /* Responsive */
    @media (max-width: 991px) {
      .legal-wrap { grid-template-columns: 1fr; gap: 2rem; }
      .legal-toc { position: static; }
      .legal-toc-list { display: flex; flex-wrap: wrap; gap: 6px; }
      .legal-toc-list li { margin-bottom: 0; }
      .legal-toc-list a { padding: 0.3rem 0.65rem; border-left: none; border-bottom: 2px solid transparent; font-size: 0.75rem; }
      .legal-toc-list a:hover, .legal-toc-list a.active { border-bottom-color: var(--sky); border-left-color: transparent; }
    }
    /*****************************************end***********************************/

    /*********************terms of use***************************************/
      .legal-wrap {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 3rem;
      align-items: start;
    }
    .legal-toc { position: sticky; top: 96px; }
    .legal-toc-title {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 1rem;
    }
    .legal-toc-list { list-style: none; padding: 0; margin: 0; }
    .legal-toc-list li { margin-bottom: 0.1rem; }
    .legal-toc-list a {
      font-size: 0.8rem; font-weight: 400; color: var(--text-body);
      padding: 0.35rem 0.75rem; display: block;
      border-radius: 6px; border-left: 2px solid transparent;
      transition: var(--transition);
    }
    .legal-toc-list a:hover, .legal-toc-list a.active {
      color: var(--brand); background: rgba(74,144,184,0.07);
      border-left-color: var(--sky);
    }
    .legal-toc-updated {
      margin-top: 1.5rem; padding: 0.75rem 0.85rem;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--radius); font-size: 0.72rem;
      color: var(--text-muted); line-height: 1.6;
    }
    .legal-toc-updated strong { color: var(--text-body); display: block; margin-bottom: 2px; }

    .legal-content { min-width: 0; }
    .legal-section { margin-bottom: 3.5rem; scroll-margin-top: 96px; }
    .legal-section:last-child { margin-bottom: 0; }
    .legal-section-num {
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--sky); margin-bottom: 0.4rem;
    }
    .legal-section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 700;
      color: var(--text-head); margin-bottom: 1rem;
      letter-spacing: -0.015em; line-height: 1.15;
    }
    .legal-divider { width: 30px; height: 2px; background: var(--sky); margin-bottom: 1.25rem; border-radius: 2px; }
    .legal-body { font-size: 0.9rem; color: var(--text-body); line-height: 1.85; font-weight: 300; }
    .legal-body p { margin-bottom: 1rem; }
    .legal-body p:last-child { margin-bottom: 0; }
    .legal-body strong { font-weight: 600; color: var(--text-head); }
    .legal-body ul { padding-left: 1.25rem; margin-bottom: 1rem; }
    .legal-body ul li { margin-bottom: 0.45rem; line-height: 1.75; }
    .legal-body a { color: var(--sky); text-decoration: underline; text-underline-offset: 3px; }
    .legal-body a:hover { color: var(--brand); }
    .legal-infobox {
      background: rgba(74,144,184,0.06); border: 1px solid rgba(74,144,184,0.18);
      border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.25rem 0;
    }
    .legal-infobox p { margin: 0; font-size: 0.87rem; color: var(--text-body); line-height: 1.75; }
    .legal-infobox strong { color: var(--brand); }
    .legal-warn-box {
      background: rgba(220,53,69,0.05); border: 1px solid rgba(220,53,69,0.15);
      border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.25rem 0;
    }
    .legal-warn-box p { margin: 0; font-size: 0.87rem; color: var(--text-body); line-height: 1.75; }
    .legal-contact-card {
      background: var(--grad-hero); border-radius: var(--radius-lg);
      padding: 2.5rem; position: relative; overflow: hidden;
    }
    .legal-contact-card::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px; pointer-events: none;
    }
    .legal-contact-card > * { position: relative; z-index: 1; }
    .legal-contact-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
    .legal-contact-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; font-weight: 300; }

    @media (max-width: 991px) {
      .legal-wrap { grid-template-columns: 1fr; gap: 2rem; }
      .legal-toc { position: static; }
      .legal-toc-list { display: flex; flex-wrap: wrap; gap: 6px; }
      .legal-toc-list li { margin-bottom: 0; }
      .legal-toc-list a { padding: 0.3rem 0.65rem; border-left: none; border-bottom: 2px solid transparent; font-size: 0.75rem; }
      .legal-toc-list a:hover, .legal-toc-list a.active { border-bottom-color: var(--sky); border-left-color: transparent; }
    }




     /* Distribution Cards */
    .dist-card {
      border: none;
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s ease;
      height: 100%;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .dist-card:hover { transform: translateY(-10px); }
    .dist-card img {
      height: 220px;
      object-fit: cover;
      width: 100%;
    }
    .dist-card-body { padding: 1.5rem; text-align: center; }
    .dist-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--brand);
      margin: 0;
    }
.icons-50{
  width: 50px;
  height: 50px;
}
.icons-40{
  width: 40px;
  height: 40px;
}

/******************************404 page**************************/
 .page-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .error-main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 1.5rem 80px;
    }
    .error-inner {
      max-width: 640px;
      width: 100%;
      text-align: center;
    }

    /* Large outlined 404 */
    .error-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(7rem, 18vw, 11rem);
      font-weight: 700;
      line-height: 0.9;
      letter-spacing: -0.05em;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--border);
      position: relative;
      margin-bottom: 2rem;
      user-select: none;
    }
    .error-num::after {
      content: '404';
      position: absolute;
      inset: 0;
      background: var(--grad-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: 0.12;
    }

    .error-rule {
      width: 40px; height: 2px;
      background: var(--sky);
      border-radius: 2px;
      margin: 0 auto 1.75rem;
    }
    .error-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      color: var(--text-head);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .error-sub {
      font-size: 0.95rem;
      color: var(--text-body);
      line-height: 1.8;
      font-weight: 300;
      max-width: 420px;
      margin: 0 auto 2.5rem;
    }

    /* Buttons */
    .btn-row {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3.5rem;
    }

    /* Quick links */
    .quick-links-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }
    .quick-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .quick-link {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-body);
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 0.4rem 0.85rem;
      transition: var(--transition);
    }
    .quick-link:hover {
      border-color: var(--sky);
      color: var(--sky);
      background: rgba(74,144,184,0.05);
    }

    /* Slim footer */
    .error-footer {
     
      padding: 1.25rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 0.72rem;      
    }
      .error-footer-bg{
 border-top: 1px solid var(--border);
 color: var(--text-muted);
      background: var(--bg-card);
      }
    .error-footer a { color: var(--text-muted); }
    .error-footer a:hover { color: var(--sky); }
    .footer-legal { display: flex; gap: 1.25rem; }

    @media (max-width: 480px) {
      .btn-row { flex-direction: column; align-items: center; }
      .btn-primary-pf, .btn-outline-pf { width: 100%; justify-content: center; }
    }
    /***************************end******************************/

