/* Akira Group — brand palette per Akira Group Mini Brand Guide (Akira Green / Akira Gold). */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #F7F5F1;
  --color-ink: #1B2027;
  --color-ink-soft: #545B66;
  --color-line: #E4E1D9;
  --color-accent: #B68C44;      /* Akira Gold */
  --color-accent-dark: #886B32;
  --color-navy: #0E2721;        /* Akira Green */
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 4px;
  --radius-pill: 999px;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  margin: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 20px rgba(14,39,33,0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 4px 20px rgba(14,39,33,0.1);
}

.site-header .container {
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  transition: height 0.3s ease;
}
.site-header.scrolled .container { height: 48px; }

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-navy);
  display: flex;
  align-items: center;
}
.logo span { color: var(--color-accent); }
.logo img {
  height: 38px;
  width: auto;
  display: block;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  background: rgba(14,39,33,0.05);
  border: 1px solid rgba(14,39,33,0.08);
  border-radius: 999px;
  padding: 0.3rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--color-navy); }
.main-nav a.active {
  background: var(--color-navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(14,39,33,0.25);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--color-navy);
}

.header-cta {
  background: rgba(182,140,68,0.75);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(136,107,50,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}
.header-cta:hover { background: rgba(136,107,50,0.85); transform: translateY(-1px); }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 100px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    display: none;
    padding: 1rem 24px 1.5rem;
    max-height: 80vh;
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    background: none;
    border: none;
    padding: 0;
  }
  .main-nav a { padding: 0.7rem 0.9rem; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--color-navy);
}

.hero-bg {
  position: absolute;
  inset: -30px;
  z-index: 0;
  background: url('../images/hero-backdrop.webp') center/cover no-repeat;
  filter: blur(8px);
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14,39,33,0) 30%, rgba(14,39,33,0.5) 100%);
  pointer-events: none;
}

.hero-video-frame {
  position: absolute;
  top: 13.33%;
  right: 38.75%;
  bottom: 13.33%;
  left: 38.75%;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  will-change: top, right, bottom, left, border-radius, transform, opacity;
  opacity: 0;
  transform: scale(0.95);
  animation: hero-card-in 0.8s ease forwards;
}
@keyframes hero-card-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.4) 100%);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-placeholder {
  background:
    linear-gradient(180deg, rgba(14,39,33,0.2) 0%, rgba(14,39,33,0.7) 100%),
    repeating-linear-gradient(45deg, #133329, #133329 14px, #0E2721 14px, #0E2721 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-label {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-text-left,
.hero-text-right {
  position: absolute;
  z-index: 3;
  will-change: transform, opacity;
}
.hero-text-left,
.hero-text-right {
  background: rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2rem;
}
.hero-text-left {
  top: 16%;
  left: 8%;
  max-width: 28vw;
  text-align: left;
}
.hero-text-right {
  bottom: 11%;
  right: 8%;
  max-width: 28vw;
  text-align: left;
}
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #E2D2B5;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0;
}
.hero-cta.btn-primary {
  margin-top: 1.6rem;
  background: rgba(182,140,68,0.75);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 16px rgba(136,107,50,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}
.hero-cta.btn-primary:hover {
  background: rgba(136,107,50,0.85);
}
.hero p.lead {
  font-size: 1.05rem;
  color: #EDEDED;
  margin: 0;
}

.hero-progress {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2.2rem;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 26px;
  height: 3px;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.hero-dot.active,
.hero-dot:hover { background: var(--color-accent); }

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.scroll-cue-label {
  font-size: 0.8rem;
  color: #E2D2B5;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.mouse-wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-accent);
  animation: mouse-scroll 1.6s infinite;
}
.scroll-cue { animation: scroll-cue-bounce 2.2s ease-in-out infinite; }
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

@media (max-width: 768px) {
  .hero-video-frame {
    top: 13%;
    right: 6%;
    bottom: 13%;
    left: 6%;
    border-radius: 20px;
  }
  .hero-text-left,
  .hero-text-right {
    max-width: 80vw;
    padding: 1.4rem;
    text-align: left;
  }
  .hero-text-left {
    top: 96px;
    left: 4%;
  }
  .hero-text-right {
    bottom: 5%;
    right: 4%;
  }
}

@keyframes mouse-scroll {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ---------- Our Journey ---------- */

.journey-section {
  position: relative;
  background: #101820;
  overflow: hidden;
}
.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/journey-backdrop.webp') repeat-x left center;
  background-size: 1792px auto;
  opacity: 0.78;
  filter: blur(1px);
  pointer-events: none;
  animation: journey-bg-flow 28s linear infinite;
}
@keyframes journey-bg-flow {
  from { background-position: 0 center; }
  to { background-position: -1792px center; }
}
.journey-section .container,
.journey-section .journey-track-wrap { position: relative; z-index: 1; }
.journey-section .section-head { margin-bottom: 2.4rem; }
.journey-section .section-head h2 { color: #fff; }
.journey-section .section-head p { color: #C8CDCC; }

.journey-progress {
  max-width: 640px;
  height: 3px;
  margin: 0 auto 2.6rem;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.journey-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--color-accent);
}

.journey-track-wrap {
  overflow-x: auto;
  padding: 0.5rem 24px 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.journey-track-wrap::-webkit-scrollbar { display: none; }
.journey-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  margin: 0 auto;
}
.journey-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 400px;
  min-height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  box-shadow: 0 4px 20px rgba(14,39,33,0.1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.journey-item.active {
  background: rgba(255,255,255,0.9);
  transform: scale(1.05);
  border-color: var(--color-accent);
  box-shadow: 0 8px 28px rgba(14,39,33,0.2);
}
.journey-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(182,140,68,0.12);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-icon svg { width: 18px; height: 18px; }
.journey-text { display: flex; align-items: baseline; gap: 0.6rem; }
.journey-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(182,140,68,0.4);
}
.journey-item p {
  color: var(--color-ink-soft);
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* ---------- Sections generic ---------- */

section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-alt); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.value-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.value-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.value-card.reveal:nth-child(4) { transition-delay: 0.24s; }

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--color-navy);
  margin-bottom: 0.8rem;
}
.section-head p { color: var(--color-ink-soft); }

/* ---------- Who We Are (horizontal scroll cards) ---------- */

#about { background: #F9F8F6; }

.who-scroll-wrap {
  position: relative;
  max-width: 980px;
  height: 380px;
  margin: 0 auto;
}
.who-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(182,140,68,0.3);
  border-radius: var(--radius);
  padding: 2.6rem;
  box-sizing: border-box;
  box-shadow: 0 16px 40px rgba(14,39,33,0.08);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease;
}
.who-card.active { opacity: 1; z-index: 1; }
.who-card-text p { color: var(--color-ink-soft); margin-bottom: 1rem; line-height: 1.7; }
.who-card-text p:last-child { margin-bottom: 0; }
.who-card-text strong { color: var(--color-navy); }
.who-card-img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}
.who-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.who-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-line);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.who-dot.active, .who-dot:hover { background: var(--color-accent); }
@media (max-width: 700px) {
  .who-scroll-wrap { max-width: 100%; height: 560px; }
  .who-card { grid-template-columns: 1fr; grid-template-rows: auto 200px; padding: 1.6rem; overflow-y: auto; }
}

/* ---------- Chairman's quote ---------- */

.quote-band {
  background: var(--color-navy);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}
.quote-band .chairman-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(182,140,68,0.4);
  margin: 0 auto 1.6rem;
  display: block;
}
.quote-band .quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.quote-band .name { color: var(--color-accent); font-weight: 700; }
.quote-band .role { color: #C8CDCC; font-size: 0.9rem; margin-top: 0.2rem; }

.stats-band {
  background: var(--color-navy);
  padding: 4rem 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
}
.stat {
  border-right: 1px solid rgba(182,140,68,0.25);
}
.stat:last-child { border-right: none; }
.stat h3 { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--color-accent); font-weight: 800; }
.stat p { color: #C8CDCC; font-size: 0.9rem; margin-top: 0.3rem; }

/* ---------- Values ---------- */

.values-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.values-bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease;
}
.values-bg-layer.active { opacity: 1; }
#values::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(14,39,33,0.55) 0%, rgba(14,39,33,0.4) 100%);
}
#values { position: relative; overflow: hidden; }
#values .container { position: relative; z-index: 1; }
#values .section-head h2 { color: #fff; }
#values .section-head p { color: rgba(255,255,255,0.82); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 960px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value-card {
  background: rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  padding: 1.8rem;
  text-align: center;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover,
.value-card.active {
  background: linear-gradient(135deg, rgba(182,140,68,0.4) 0%, rgba(14,39,33,0.3) 50%, rgba(182,140,68,0.4) 100%);
  background-size: 220% 220%;
  animation: value-card-liquid 5s ease infinite;
  border-color: rgba(182,140,68,0.65);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
@keyframes value-card-liquid {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.value-card .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.value-card .icon svg {
  width: 24px;
  height: 24px;
}
.value-card:hover .icon,
.value-card.active .icon { background: rgba(182,140,68,0.35); color: #fff; }
.value-card h3 { color: #fff; margin-bottom: 0.9rem; font-size: 1.1rem; }
.value-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; font-style: italic; }
.value-points { text-align: left; display: flex; flex-direction: column; gap: 0.7rem; }
.value-point strong { display: block; color: var(--color-navy); font-size: 0.88rem; margin-bottom: 0.15rem; }
.value-point span { display: block; color: var(--color-ink-soft); font-size: 0.85rem; }

/* ---------- Curtain reveal wrapper (generic: any two sections inside
   .curtain-stage — first child slides away, second is revealed underneath) ---------- */

.curtain-wrap { position: relative; }
@media (min-width: 861px) {
  .curtain-stage {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  .curtain-stage > section:nth-child(2) {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .curtain-stage > section:first-child {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    overflow-y: auto;
    will-change: transform;
  }
  .curtain-stage > section:first-child .container { width: 100%; }
}

/* ---------- Businesses (hover-driven verticals) ---------- */

.ventures {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  padding: 6rem 0;
}
.ventures-bg { position: absolute; inset: 0; z-index: 0; }
.ventures-bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}
.ventures-bg-layer.active { opacity: 1; }
.ventures-bg-layer[data-index="0"] { background-image: url('../images/venture-healthcare.webp'); }
.ventures-bg-layer[data-index="1"] { background-image: url('../images/venture-agriculture.webp'); }
.ventures-bg-layer[data-index="2"] { background-image: url('../images/venture-realty.webp'); }
.ventures-bg-layer[data-index="3"] { background-image: url('../images/venture-wealth.webp'); }
.ventures::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.12) 100%);
}
.ventures-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.ventures-intro .section-eyebrow { color: var(--color-accent); }
.ventures-intro h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.6rem; }
.ventures-intro p { color: #C8CDCC; }

.ventures-list { display: flex; flex-direction: column; }
.ventures-item {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1.4rem 0;
  transition: padding 0.25s ease;
}
.ventures-list .ventures-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.ventures-link {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  color: #fff;
  transition: color 0.25s ease;
}
.ventures-item:hover .ventures-link,
.ventures-item.active .ventures-link { color: var(--color-accent); }
.ventures-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #EDEDED;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.ventures-item:hover .ventures-desc,
.ventures-item.active .ventures-desc {
  max-height: 6rem;
  opacity: 1;
  margin-top: 0.7rem;
}

@media (max-width: 860px) {
  .ventures-content { grid-template-columns: 1fr; gap: 2rem; }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-1px); }
.btn-outline {
  background: none;
  color: var(--color-navy);
  border: 1px solid var(--color-line);
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-1px); }
.btn-disabled {
  background: var(--color-bg-alt);
  color: var(--color-ink-soft);
  cursor: not-allowed;
  border: 1px solid var(--color-line);
}

/* ---------- Careers ---------- */

.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .careers-layout { grid-template-columns: 1fr; }
}
.careers-text h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--color-navy); margin: 0.6rem 0 1rem; }
.careers-text p { color: var(--color-ink-soft); }
.careers-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 860px) {
  .careers-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .careers-cards { grid-template-columns: 1fr; }
}
.career-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.career-card:not(.career-card-disabled):hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(14,39,33,0.08);
}
.career-card-disabled { cursor: not-allowed; opacity: 0.65; }
.career-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.career-icon svg { width: 20px; height: 20px; }
.career-name { font-weight: 700; color: var(--color-navy); font-size: 0.95rem; }
.career-status { font-size: 0.8rem; color: var(--color-ink-soft); }
.career-status-live { color: #3E7A52; font-weight: 600; }

/* ---------- News ---------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .news-grid { grid-template-columns: 1fr; }
}
.news-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.news-card .date { font-size: 0.8rem; color: var(--color-accent); font-weight: 600; margin-bottom: 0.5rem; }
.news-card h4 { color: var(--color-navy); margin-bottom: 0.5rem; font-size: 1.05rem; }
.news-card p { color: var(--color-ink-soft); font-size: 0.9rem; }
.news-empty {
  position: relative;
  text-align: center;
  background: var(--color-navy);
  border: 1px solid rgba(182,140,68,0.25);
  border-radius: var(--radius);
  padding: 4rem 2rem 3.5rem;
}
.news-badge {
  display: inline-block;
  background: rgba(182,140,68,0.15);
  border: 1px solid rgba(182,140,68,0.4);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.news-empty-title { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.news-empty-sub { color: #C8CDCC; font-size: 0.92rem; max-width: 480px; margin: 0 auto; }
.news-photo-tile {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.news-photo-tile-img { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.news-photo-tile-img img,
.news-carousel-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.78) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news-photo-tile:hover .news-photo-overlay { opacity: 1; }
.news-photo-overlay p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}
.news-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.news-carousel-slide.active { opacity: 1; }
.news-cta { text-align: center; margin-top: 2rem; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: url('../images/cta-band.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14,39,33,0.82);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-serif); font-size: 1.9rem; margin-bottom: 0.8rem; }
.cta-band p { color: #C8CDCC; margin-bottom: 1.8rem; }
.cta-band .btn-primary { background: var(--color-accent); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-navy);
  color: #C8CDCC;
  padding: 3.5rem 0 1.5rem;
  border-top: 4px solid var(--color-accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid > div { min-width: 0; }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-grid ul li { margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-grid ul li a:hover { color: var(--color-accent); }
.footer-logo { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; }
.footer-logo span { color: var(--color-accent); }
.footer-logo img {
  height: 76px;
  width: auto;
  display: block;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--radius);
}
.footer-grid p { font-size: 0.88rem; color: #9EA7B0; }

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.88rem;
}
.newsletter-form input::placeholder { color: #8A929B; }
.newsletter-form button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--color-accent-dark); }

.social-links { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.social-links a:hover { border-color: var(--color-accent); color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: #8A929B;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a:hover { color: var(--color-accent); }

/* ---------- Page banner (inner pages) ---------- */

.page-banner {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(160deg, var(--color-navy) 0%, #101820 100%);
  overflow: hidden;
}
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.6rem; }
.page-banner.has-photo {
  background-size: cover;
  background-position: center;
}
.page-banner.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,39,33,0.88) 0%, rgba(16,24,32,0.78) 100%);
}
.page-banner.has-photo .container { position: relative; z-index: 1; }
.banner-healthcare { background-image: url('../images/venture-healthcare.webp'); }
.banner-agriculture { background-image: url('../images/venture-agriculture.webp'); }
.banner-realty { background-image: url('../images/venture-realty.webp'); }
.banner-capital { background-image: url('../images/venture-wealth.webp'); }
.page-banner p { max-width: 600px; color: #C8CDCC; }

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--color-navy); margin-bottom: 0.3rem; display: block; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  align-self: flex-start;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--color-accent-dark); }

.contact-info-item { margin-bottom: 1.6rem; }
.contact-info-item h4 { color: var(--color-navy); margin-bottom: 0.3rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item p { color: var(--color-ink-soft); }

.map-placeholder {
  margin-top: 1.5rem;
  height: 220px;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  padding: 1rem;
}

/* ---------- Legal / static pages ---------- */

.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { color: var(--color-navy); margin: 2rem 0 0.8rem; font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--color-ink-soft); margin-bottom: 0.8rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; }

/* ---------- Business detail pages ---------- */

.breadcrumb {
  font-size: 0.82rem;
  color: #9EA7B0;
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: #C8CDCC; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.6; margin: 0 0.4rem; }

.business-page-tagline { max-width: 620px; color: #C8CDCC; margin-bottom: 1.8rem; font-size: 1.05rem; }

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.segment-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.segment-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(14,39,33,0.08); }
.segment-card .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 1rem;
}
.segment-card .icon svg {
  width: 22px;
  height: 22px;
}
.segment-card h3 { color: var(--color-navy); font-size: 1.02rem; margin-bottom: 0.4rem; }
.segment-card p { color: var(--color-ink-soft); font-size: 0.88rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) {
  .why-grid-3 { grid-template-columns: 1fr; }
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item .icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.why-item .icon svg {
  width: 20px;
  height: 20px;
}
.why-item h4 { color: var(--color-navy); font-size: 0.98rem; margin-bottom: 0.3rem; }
.why-item p { color: var(--color-ink-soft); font-size: 0.88rem; }

.presence-block {
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.presence-block h4 { color: var(--color-navy); margin-bottom: 0.5rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.presence-block p { color: var(--color-ink-soft); }

.presence-map-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 2rem;
}
.world-map {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05), 0 12px 30px rgba(14,39,33,0.12);
}
.world-map svg { filter: drop-shadow(0 6px 14px rgba(14,39,33,0.15)); }
@media (max-width: 700px) {
  .world-map { height: 280px; }
}
.presence-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.country-chip {
  background: var(--color-bg-alt);
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
}

.product-cat-block { margin-top: 2.4rem; }
.product-cat-block:first-of-type { margin-top: 0; }
.product-cat-heading {
  color: var(--color-navy);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}
.product-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.product-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.2rem 0.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-cat:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(14,39,33,0.07); }
.product-cat .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}
.product-cat .icon svg {
  width: 20px;
  height: 20px;
}
.product-cat span { color: var(--color-navy); font-size: 0.85rem; font-weight: 600; line-height: 1.3; }

/* ---------- Reusable full-bleed photo backdrop for a section (Kheti What We Offer, Healthcare Products) ---------- */
.offer-photo-section { position: relative; overflow: hidden; }
.offer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.offer-photo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(14,39,33,0.82) 0%, rgba(14,39,33,0.6) 100%);
}
.offer-photo-section .container { position: relative; z-index: 1; }
.offer-photo-section .section-head span,
.offer-photo-section .section-head h2,
.offer-photo-section .section-head p { color: #fff; }
.offer-photo-section .why-item {
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.offer-photo-section .why-item .icon {
  background: rgba(255,255,255,0.15);
  color: #C9A227;
}
.offer-photo-section .why-item h4 { color: #fff; }
.offer-photo-section .why-item p { color: rgba(255,255,255,0.8); }

.careers-strip {
  background: rgba(182,140,68,0.08);
  border-radius: var(--radius);
  padding: 2.4rem 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.careers-strip h3 { color: var(--color-navy); font-size: 1.3rem; margin-bottom: 0.4rem; }
.careers-strip p { color: var(--color-ink-soft); }

.cross-links-head { color: var(--color-navy); font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.cross-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 760px) {
  .cross-links-grid { grid-template-columns: 1fr; }
}
.cross-link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  transition: border-color 0.2s, transform 0.2s;
}
.cross-link-card:hover { border-color: var(--color-accent); transform: translateY(-3px); }
.cross-link-card h4 { color: var(--color-navy); font-size: 1rem; margin-bottom: 0.3rem; }
.cross-link-card p { color: var(--color-ink-soft); font-size: 0.85rem; margin-bottom: 0.6rem; }
.cross-link-card .cross-link-arrow { color: var(--color-accent); font-size: 0.85rem; font-weight: 700; }

/* ---------- Misc ---------- */

.todo-box {
  border: 1px dashed #C79A4F;
  background: #FBF3E4;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: #7A5A20;
  margin-bottom: 1.5rem;
}
.todo-box strong { color: #886B32; }

/* ---------- Cookie consent banner ---------- */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 -4px 20px rgba(14,39,33,0.1);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: cookie-banner-in 0.4s ease;
}
.cookie-banner.dismissed { opacity: 0; transform: translateY(100%); transition: opacity 0.35s ease, transform 0.35s ease; }
@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p { color: var(--color-ink-soft); font-size: 0.9rem; line-height: 1.5; margin: 0; max-width: 640px; }
.cookie-banner p a { color: var(--color-navy); font-weight: 600; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-banner-actions .btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; padding: 1.2rem 1.4rem; }
  .cookie-banner-actions { flex-direction: column; width: 100%; }
}
