/* ==========================================================================
   Urmi Lifesciences — Supplement Manufacturer India
   urmi.css : brand layer sitting on top of Bootstrap 5.
   Design tokens, typography and components are ported from the approved
   design reference so the rebuilt pages match it section for section.
   Structure/photography copy: original facility photographs + illustrative
   private-label mockups.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens -- */
:root {
  --navy: #092744;
  --deep: #061b30;
  --blue: #155993;
  --orange: #ff903f;
  --paper: #faf9f6;
  --white: #fff;
  --mist: #eef3f7;
  --line: #dce4eb;
  --muted: #596a7b;
  --light: #b5c6d6;
  --ink: #0f2b48;
  --max: 1280px;
  --ease: cubic-bezier(.22, .68, 0, 1.02);
  --wa: #25d366;
  --wa-deep: #04301c;

  /* Bootstrap variable overrides so utilities inherit the brand palette */
  --bs-body-color: var(--navy);
  --bs-body-bg: var(--paper);
  --bs-primary: var(--orange);
  --bs-link-color: var(--blue);
  --bs-border-color: var(--line);
  --bs-focus-ring-color: #2c72ad33;
}

/* ------------------------------------------------------------------ base -- */
html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font: 15px/1.65 "Aptos", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, figure { margin: 0; }
h1, h2 { font-weight: 400; }
/* Bootstrap's reboot tightens headings to line-height 1.2 and adds a bottom
   margin. The reference design lets headings inherit the body leading (1.65)
   and control their own spacing, so both are reset here. Components that need
   tighter leading (.title, .hero h1, .process-top h2 ...) set it themselves. */
h1, h2, h3, h4, h5, h6 { line-height: inherit; margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
img, svg { display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: #ffd6b8; color: var(--deep); }
:focus-visible { outline: 3px solid #de6111; outline-offset: 5px; }
[hidden] { display: none !important; }

/* Bootstrap resets we intentionally neutralise to keep the reference styling */
.btn:focus, .btn:active, .form-control:focus, .form-select:focus { box-shadow: none; }
.btn { border: 1px solid transparent; }
.navbar-toggler:focus { box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { display: none; }        /* custom +/x icon instead */
.modal-content { border: 0; background: transparent; }

/* --------------------------------------------------------------- layout --- */
.container-urmi {
  --bs-gutter-x: 0;
  width: min(var(--max), calc(100% - 96px));
  max-width: none;
  padding-inline: 0;
  margin-inline: auto;
}
.section { padding: 100px 0; }
.skip-link {
  position: fixed; z-index: 2000; top: -80px; left: 20px;
  background: #fff; padding: 12px 24px; border-radius: 4px;
}
.skip-link:focus { top: 15px; }

/* ----------------------------------------------------------- typography --- */
.serif, h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.045em; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; line-height: 1.5; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin: 0;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; flex-shrink: 0; background: var(--orange); }
.eyebrow.light { color: var(--light); }
.eyebrow.blue { color: var(--blue); }

.title { font-size: clamp(34px, 3.8vw, 54px); line-height: 1.12; }
.title em, .contact-copy h2 em { color: var(--blue); font-weight: 400; font-style: normal; }
.lead-muted { color: var(--muted); font-size: 14px; line-height: 1.9; }

.section-heading {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; margin-bottom: 38px;
}
.section-heading .eyebrow { margin-bottom: 17px; }
.section-heading > div:last-child:not(:first-child) { max-width: 370px; color: var(--muted); font-size: 14px; }
.section-heading > div:last-child .text-link { margin-top: 15px; }

.text-link {
  display: inline-flex; gap: 18px; align-items: center;
  font-size: 12px; font-weight: 700; padding: 7px 0;
  border-bottom: 1px solid currentColor;
}
.text-link i { font-size: 13px; }
.text-link:hover { border-bottom-color: transparent; }

/* ----------------------------------------------------------------- icons -- */
.icon { flex-shrink: 0; line-height: 1; }
/* Font Awesome / Bootstrap Icons render inside text lines; without this the
   glyph's own line box makes rows a few pixels taller than the reference. */
i[class*="fa-"], i[class*="bi-"] { line-height: 1; }
i.icon { font-size: 20px; }
i.icon-sm { font-size: 14px; }
.icon-wa { color: var(--wa); }

/* --------------------------------------------------------------- buttons -- */
.btn-urmi {
  display: inline-flex; align-items: center; justify-content: center; gap: 24px;
  min-height: 50px; padding: 14px 22px; border-radius: 5px;
  font-size: 12px; letter-spacing: .02em; font-weight: 700; line-height: 1.4;
  transition: background .2s, transform .22s var(--ease), box-shadow .2s, color .2s;
}
.btn-urmi:hover { transform: translateY(-2px); }
.btn-urmi i { font-size: 15px; }

.btn-orange { background: var(--orange); color: var(--deep); }
.btn-orange:hover, .btn-orange:focus { background: #ffa764; color: var(--deep); box-shadow: 0 8px 25px #ff903f22; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0f3358; color: #fff; }
.btn-ghost { border-color: #8ea4b880; color: #fff; background: #09274422; }
.btn-ghost:hover { background: #ffffff14; color: #fff; }
.btn-soft { border-color: var(--line); background: #fff; color: var(--navy); }
.btn-soft:hover { background: var(--mist); color: var(--navy); }
.btn-wa { background: var(--wa); color: var(--wa-deep); }
.btn-wa:hover, .btn-wa:focus { background: #2fe07a; color: var(--wa-deep); box-shadow: 0 8px 25px #25d36640; }
.btn-wa i { font-size: 17px; }

/* --------------------------------------------------------------- topbar --- */
.topbar {
  background: var(--deep); color: #b9ccdf;
  font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
}
.topbar .container-urmi { height: 31px; display: flex; align-items: center; justify-content: space-between; }
.topbar span { display: inline-flex; gap: 8px; align-items: center; }
.topbar i { color: #fbaa6e; font-size: 12px; }

/* -------------------------------------------------------------- navbar ---- */
.urmi-nav {
  background: #fff; position: sticky; top: 0; z-index: 1030;
  border-bottom: 1px solid var(--line); padding: 0;
}
/* Bootstrap's .navbar wraps its children; the brand, menu button and links must
   sit on one line inside the container, exactly as in the reference design. */
.urmi-nav .container-urmi {
  display: flex; align-items: center; justify-content: space-between;
  gap: 25px; min-height: 84px;
}
.urmi-nav .navbar-brand { padding: 5px 0; margin-right: 0; flex-shrink: 0; }
.urmi-nav .navbar-collapse { flex-grow: 0; }
.urmi-nav .nav-link {
  position: relative; padding: 12px 0; font-size: 12px; font-weight: 650; color: var(--navy);
}
.urmi-nav .nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 4px; height: 2px; width: 0;
  background: var(--orange); transition: width .2s;
}
.urmi-nav .nav-link:hover::after { width: 100%; }
.urmi-nav .nav-item { margin-right: 26px; }
.urmi-nav .nav-item:last-child { margin-right: 0; }
.urmi-nav .navbar-nav { align-items: center; }
.urmi-nav .btn-urmi { min-height: 45px; padding: 12px 17px; gap: 16px; }

/* Brand lock-up: the supplied URMI LIFE artwork with the domain line beneath.
   The logo is an image so the leaf gradient and the lettering keep their exact
   proportions; only the height changes between breakpoints. */
.wordmark { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; flex-shrink: 0; }
.wordmark-logo { display: block; width: auto; height: 32px; }
.wordmark small { display: block; font-size: 8px; letter-spacing: .1em; line-height: 1.2; color: var(--muted); }
.urmi-nav .navbar-toggler {
  display: none; background: var(--mist); border-radius: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center; border: 0;
}
.urmi-nav .navbar-toggler i { font-size: 18px; }

.mobile-nav { padding: 8px 0 23px; border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 10px 0; font-size: 15px; }

.scroll-progress {
  height: 2px; background: var(--orange); position: absolute;
  left: 0; bottom: -1px; width: 0; pointer-events: none;
}

/* ----------------------------------------------------------------- hero --- */
.hero { background: var(--deep); color: #fff; position: relative; isolation: isolate; }
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: -3;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 27, 48, .99) 0%, rgba(6, 27, 48, .94) 23%, rgba(6, 27, 48, .78) 43%, rgba(6, 27, 48, .18) 71%, rgba(6, 27, 48, .08) 100%),
    linear-gradient(0deg, #061b30bd, transparent 40%);
}
.hero-main {
  position: relative; min-height: 655px; display: flex; align-items: center;
  padding-top: 62px; padding-bottom: 105px;
}
.hero-copy { width: 630px; max-width: 56%; position: relative; }
.hero-copy .eyebrow { margin-bottom: 26px; color: #d1deea; font-size: 9px; }
.hero h1 { font-size: clamp(42px, 4.7vw, 67px); line-height: 1.095; text-wrap: balance; }
.hero h1 em { color: #ffaf74; font-weight: 400; font-style: normal; }
.hero-description { font-size: 14px; line-height: 1.9; color: #c3d3e1; max-width: 410px; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 29px; }
.hero-micro {
  display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px;
  font-size: 10px; letter-spacing: .025em; color: #c3d3e1;
}
.hero-micro span { display: inline-flex; gap: 7px; align-items: center; }
.hero-micro i { color: var(--orange); font-size: 12px; }
.hero-coordinate {
  position: absolute; right: 0; top: 47px; font-size: 10px; letter-spacing: .13em;
  text-align: right; font-weight: 600; line-height: 1.8; text-shadow: 0 2px 14px #092744;
}
.hero-coordinate strong { display: block; font-family: Georgia, serif; font-size: 20px; font-weight: 400; letter-spacing: -.02em; }

.photo-story {
  position: absolute; right: 0; bottom: 81px; padding: 18px 20px;
  border-left: 2px solid var(--orange); background: #061b3080;
  backdrop-filter: blur(9px); max-width: 285px;
}
.photo-story > span { display: block; font-size: 8px; letter-spacing: .19em; color: #d0deea; }
.photo-story strong { font-size: 21px; font-family: Georgia, serif; font-weight: 400; line-height: 1.45; display: block; margin: 5px 0 10px; }
.photo-story button { display: flex; align-items: center; gap: 16px; background: none; color: #fff; border: 0; padding: 0; font-size: 10px; font-weight: 600; }
.photo-story i { font-size: 13px; }

.hero-pagination { display: flex; align-items: center; gap: 7px; position: absolute; right: 0; bottom: 45px; }
.hero-dot { width: 32px; height: 3px; background: #fff5; border: 0; padding: 0; position: relative; transition: background .25s; }
.hero-dot::before { content: ""; position: absolute; inset: -10px 0; }
.hero-dot[aria-pressed="true"] { background: var(--orange); }
.hero-photo.is-changing { opacity: .65; }

/* --------------------------------------------------------- capabilities --- */
.capabilities { position: relative; margin-top: -1px; background: #fff; z-index: 3; border-bottom: 1px solid var(--line); }
.cap-grid { padding: 25px 0; }
/* Product cards, capability strip and gallery rail use Bootstrap row-cols, so
   only the gutters need declaring here. */
/* Column counts follow the reference breakpoints (5/4/3/2 across) rather than
   Bootstrap's default tiers, so the grids reflow at exactly the same widths.
   Bootstrap gives every .col `flex-basis: 0` with `min-width: auto`, so a plain
   `width` would be ignored when the row wraps - the flex-basis has to be set. */
.cap-grid > .col { flex: 0 0 20%; max-width: 20%; }
.product-grid > .col { flex: 0 0 25%; max-width: 25%; }
.gallery-rail > .col { flex: 0 0 25%; max-width: 25%; }
.process-grid > .col { flex: 0 0 25%; max-width: 25%; }
.market-grid > .col { flex: 0 0 33.3333%; max-width: 33.3333%; }
.cap-grid, .product-grid, .gallery-rail, .process-grid, .market-grid { --bs-gutter-y: 0; }
.product-grid { --bs-gutter-x: 20px; align-items: start; }
.cap {
  display: flex; align-items: center; gap: 15px; padding: 0 22px;
  border-right: 1px solid var(--line); color: var(--navy);
}
.cap:first-child { padding-left: 0; }
.cap:last-child { border-right: 0; }
.cap-icon {
  color: var(--blue); background: #edf4fc; border-radius: 50%;
  width: 41px; height: 41px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cap-icon i { font-size: 17px; }
.cap h3 { font-size: 12px; font-weight: 700; line-height: 1.3; }
.cap p { font-size: 9px; line-height: 1.5; color: var(--muted); margin-top: 4px; }
.cap:hover .cap-icon { background: #ddeeff; }

/* ------------------------------------------------------------- products --- */
.products { background: var(--paper); }
.filter-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 24px; }
.filters { display: flex; gap: 7px; flex-wrap: wrap; }
.filter {
  font-size: 10px; letter-spacing: .015em; padding: 8px 14px; min-height: 37px;
  border: 1px solid var(--line); border-radius: 30px; background: transparent; color: var(--muted);
  transition: background .2s, color .2s, border-color .2s;
}
.filter[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.product-note { font-size: 9px; letter-spacing: .025em; color: var(--muted); text-align: right; }

.product-card {
  border: 1px solid #dfe5e9; border-radius: 8px; background: #fff; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s; height: 100%;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 17px 36px #08284712; }
.product-card.is-hidden { display: none; }
.product-visual { background: #f5f6f8; padding: 16px 9px 10px; position: relative; }
.product-topline {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 8px; letter-spacing: .14em; font-weight: 650; color: #738090; padding: 0 9px 13px;
}
.product-topline .number { font-family: Georgia, serif; font-size: 14px; color: #758ca1; letter-spacing: 0; }
.product-visual img {
  width: 100%; height: 226px; object-fit: contain;
  mix-blend-mode: multiply; transition: transform .5s var(--ease);
}
.product-card:hover .product-visual img { transform: scale(1.025); }
.product-info { padding: 21px 21px 19px; }
.product-info h3 { font-size: 18px; letter-spacing: -.03em; font-weight: 600; margin-bottom: 6px; }
.product-info p { font-size: 11px; color: var(--muted); line-height: 1.65; min-height: 36px; }
.product-cta {
  border-top: 1px solid var(--line); margin-top: 17px; padding-top: 14px;
  display: flex; justify-content: space-between; gap: 15px; align-items: center;
  font-size: 10px; font-weight: 700;
}
.product-cta i { color: var(--blue); font-size: 13px; }
.product-bottomline {
  margin-top: 22px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; font-size: 10px; color: var(--muted);
}
.product-bottomline strong { color: var(--navy); font-weight: 700; }
.product-bottomline .text-link { font-size: 10px; margin: 0; white-space: nowrap; }

/* -------------------------------------------------------------- facility -- */
.facility { background: var(--deep); color: #fff; }
.facility .section-heading > div:last-child { color: #adc0d2; }
.facility .title em { color: #a5c8eb; }
.facility-meta { display: flex; gap: 10px; align-items: center; color: #9db4c9; font-size: 10px; margin-top: 13px; }
.live-dot { display: block; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.gallery { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 300px 270px; gap: 15px; }
.gallery-rail{--bs-gutter-x:15px;margin-top:15px}
.gallery-card {
  position: relative; display: block; width: 100%; overflow: hidden; padding: 0;
  border-radius: 5px; background: #173c5b; text-align: left; min-width: 0;
  color: #fff; border: 0;
}
/* <button> is shrink-to-fit inside a block wrapper, so the rail cards are told
   to fill their column; the gallery cards themselves are grid items and stretch
   on their own. */
.gallery-rail .gallery-card { width: 100%; }
.gallery-card > figure { margin: 0; width: 100%; height: 100%; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-card::after {
  content: ""; position: absolute; inset: 45% 0 0;
  background: linear-gradient(0deg, #03192be8, transparent);
}
.gallery-main { grid-column: 1 / 3; }
.gallery-portrait { grid-column: 3; grid-row: 1 / 3; }
.gallery-portrait img { object-position: 50% 45%; }
.gallery-small { height: 145px; }
.gallery-small img { object-position: center 50%; }
.gallery-card figcaption {
  position: absolute; bottom: 21px; left: 22px; right: 22px; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.gallery-card figcaption span { display: block; font-size: 8px; letter-spacing: .16em; color: #c4d9eb; text-transform: uppercase; margin-bottom: 5px; }
.gallery-card figcaption strong { font-size: 16px; line-height: 1.3; font-weight: 500; }
.gallery-card figcaption i { font-size: 14px; }
.gallery-small figcaption { bottom: 14px; left: 15px; right: 14px; }
.gallery-small figcaption strong { font-size: 12px; }
.gallery-caption {
  margin-top: 20px; display: flex; justify-content: space-between; gap: 20px;
  font-size: 9px; color: #91a9bd;
}
.gallery-caption i { margin-right: 5px; }

/* --------------------------------------------------------------- studio --- */
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.studio-copy .eyebrow { margin-bottom: 20px; }
.studio-copy > p:not(.eyebrow) { font-size: 14px; color: var(--muted); margin-top: 23px; max-width: 450px; line-height: 1.9; }
.studio-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 26px 0 20px; }
.studio-tab {
  border: 1px solid var(--line); background: transparent; font-size: 11px;
  padding: 10px 14px; border-radius: 4px; min-height: 42px; transition: background .2s, color .2s, border-color .2s;
}
.studio-tab[aria-selected="true"] { border-color: var(--blue); background: #edf4fb; color: var(--blue); }
.studio-details { border-top: 1px solid var(--line); padding-top: 22px; min-height: 145px; }
.studio-details h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.studio-details p { font-size: 12px; color: var(--muted); line-height: 1.8; max-width: 410px; }
.studio-details .text-link { font-size: 11px; margin-top: 9px; }
.studio-art {
  position: relative; background: #eef2f5; min-height: 485px; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  border-radius: 6px; padding: 40px; overflow: hidden;
}
.studio-art::before { content: ""; position: absolute; inset: 23px; border: 1px solid #ccd8e2; border-radius: 3px; pointer-events: none; }
.corner-text { position: absolute; top: 40px; left: 41px; color: var(--muted); font-size: 8px; letter-spacing: .2em; font-weight: 600; z-index: 1; }
.studio-logo {
  z-index: 1; background: #fff; box-shadow: 0 9px 22px #09274410; border: 1px solid var(--line);
  font-size: 11px; letter-spacing: .11em; font-weight: 750; padding: 10px 19px;
  position: absolute; right: 29px; top: 87px; transform: rotate(5deg);
}
.studio-art img { position: relative; width: 340px; max-height: 280px; height: auto; object-fit: contain; mix-blend-mode: multiply; margin-top: 22px; }
.studio-art img.is-equipment { width: 100%; max-height: 270px; mix-blend-mode: normal; }
.studio-art .image-note { position: absolute; bottom: 40px; left: 42px; right: 42px; font-size: 9px; text-align: center; color: var(--muted); line-height: 1.6; }
.studio-float { position: absolute; bottom: 75px; right: 29px; padding: 10px 15px; background: var(--navy); color: #fff; font-size: 9px; letter-spacing: .06em; transform: rotate(-3deg); }

/* -------------------------------------------------------------- process --- */
.process { padding: 58px 0 65px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.process-top { display: flex; justify-content: space-between; gap: 25px; align-items: center; margin-bottom: 36px; }
.process-top h2 { font-size: 31px; line-height: 1.2; }
.process-top > p { max-width: 350px; font-size: 12px; color: var(--muted); }
.process-grid{--bs-gutter-x:28px}
.process-step { position: relative; border-top: 1px solid var(--line); padding-top: 24px; }
.process-step::before {
  content: ""; position: absolute; top: -4px; left: 0;
  height: 7px; width: 7px; border-radius: 50%; background: var(--orange);
}
.step-number { font-family: Georgia, serif; font-size: 25px; color: #90aac1; line-height: 1.1; }
.process-step h3 { font-size: 14px; margin: 12px 0 9px; font-weight: 650; }
.process-step p { font-size: 11px; line-height: 1.75; color: var(--muted); max-width: 245px; }

/* -------------------------------------------------------------- quality --- */
.quality-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
.quality-copy .eyebrow { margin-bottom: 19px; }
.quality-copy > p:not(.eyebrow) { margin-top: 23px; font-size: 13px; line-height: 1.9; color: var(--muted); }
.quality-copy .text-link { margin-top: 16px; }
.credential-list { border-top: 1px solid var(--line); }
.credential { display: flex; gap: 16px; align-items: flex-start; padding: 21px 0; border-bottom: 1px solid var(--line); }
.credential > i { margin-top: 2px; color: var(--blue); font-size: 20px; width: 24px; text-align: center; }
.credential h3 { font-size: 13px; font-weight: 650; line-height: 1.5; }
.credential p { font-size: 11px; color: var(--muted); margin-top: 6px; line-height: 1.75; }
.credential-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.credential-tags span { font-size: 9px; padding: 4px 9px; border: 1px solid var(--line); border-radius: 3px; }
.quality-note { font-size: 9px; color: var(--muted); margin-top: 16px; line-height: 1.7; }

/* -------------------------------------------------------------- markets --- */
.markets { background: #e9f1f8; padding: 60px 0; }
.market-intro { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.market-intro h2 { font-size: 36px; line-height: 1.2; }
.market-intro > p { font-size: 12px; color: var(--muted); max-width: 340px; }
.market-grid { --bs-gutter-x: 22px; }
.market-card { padding: 25px; background: #ffffff9c; border: 1px solid #d8e3ed; border-radius: 5px; height: 100%; }
.market-icon { font-family: Georgia, serif; color: #246394; font-size: 26px; line-height: 1.2; margin-bottom: 14px; }
.market-icon i { font-size: 25px; }
.market-card h3 { font-size: 13px; margin-bottom: 9px; font-weight: 600; }
.market-card p { font-size: 11px; color: var(--muted); line-height: 1.8; }
.market-card a.text-link { font-size: 10px; margin-top: 14px; color: var(--blue); }

/* ------------------------------------------------------------------ faq --- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.faq-intro .eyebrow { margin-bottom: 20px; }
.faq-intro > p:not(.eyebrow) { font-size: 12px; color: var(--muted); margin-top: 22px; max-width: 290px; }
.urmi-accordion .accordion-item { border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.urmi-accordion .accordion-button {
  background: transparent; padding: 19px 0; font-size: 12px; font-weight: 650; color: var(--navy);
  line-height: 1.65;                     /* Bootstrap resets this to 1.25 */
  display: flex; align-items: center; justify-content: space-between; gap: 25px;
}
.urmi-accordion .accordion-button:not(.collapsed) { color: var(--navy); background: transparent; }
.urmi-accordion .accordion-button i { color: var(--blue); font-size: 13px; transition: transform .2s; }
.urmi-accordion .accordion-button:not(.collapsed) i { transform: rotate(45deg); }
.urmi-accordion .accordion-body { padding: 0 35px 21px 0; font-size: 12px; color: var(--muted); line-height: 1.85; }

/* -------------------------------------------------------------- contact --- */
.contact { background: var(--deep); color: #fff; position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; width: 650px; height: 650px; border: 1px solid #34587744;
  border-radius: 50%; left: -400px; top: 80px;
  box-shadow: 0 0 0 85px #34587712, 0 0 0 170px #3458770b; pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; position: relative; }
.contact-copy .eyebrow { margin-bottom: 22px; }
.contact-copy h2 { font-size: clamp(40px, 4.5vw, 61px); line-height: 1.1; }
.contact-copy h2 em { color: #ffb77f; }
.contact-copy > p:not(.eyebrow) { font-size: 13px; color: #a9bfd2; line-height: 1.9; max-width: 350px; margin-top: 24px; }
.contact-address {
  margin-top: 37px; border-top: 1px solid #36526a; max-width: 335px; padding-top: 25px;
  display: grid; gap: 14px;
}
.contact-address a, .contact-address span {
  font-size: 12px; display: flex; align-items: center; gap: 12px;
  color: #e0ebf4; overflow-wrap: anywhere;
}
.contact-address i { color: var(--orange); font-size: 15px; width: 17px; text-align: center; }
.contact-address i.icon-wa { color: var(--wa); }
.contact-copy .form-disclaimer { font-size: 10px; max-width: 310px; color: #8fa8bf; }

.quote-form { background: #fff; padding: 34px; border-radius: 7px; color: var(--navy); box-shadow: 0 20px 60px #03122240; }
.form-top { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.form-top i { font-size: 21px; color: var(--blue); }
.form-top h3 { font-size: 18px; font-weight: 600; letter-spacing: -.02em; }
.form-top p { font-size: 10px; color: var(--muted); margin-top: 3px; }
.form-grid{--bs-gutter-x:17px;--bs-gutter-y:17px}
.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 10px; font-weight: 700; margin-bottom: 7px; color: var(--navy); }
.field label .optional { color: #778997; font-weight: 400; }
.form-control, .form-select {
  background: #fafbfd; border: 1px solid #d9e2eb; border-radius: 4px;
  min-height: 44px; padding: 11px 12px; color: var(--navy); font-size: 12px; line-height: 1.4;
}
.form-control::placeholder { color: #7b8997; }
.form-control:focus, .form-select:focus { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 3px #2c72ad22; }
textarea.form-control { resize: vertical; min-height: 86px; }
.form-actions { margin-top: 22px; }
.form-actions .btn-urmi { width: 100%; }
.form-privacy { font-size: 9px; color: var(--muted); margin: 12px 0 0; line-height: 1.7; }
.field-trap { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.draft-panel { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.draft-panel h4 { font-size: 14px; margin: 0 0 8px; font-weight: 650; }
.draft-panel p { font-size: 11px; color: var(--muted); }
.draft-panel pre {
  font: 11px/1.6 "Segoe UI", Arial, sans-serif; white-space: pre-wrap; overflow-wrap: anywhere;
  background: var(--mist); padding: 14px; border-radius: 4px; max-height: 200px; overflow: auto; margin: 13px 0;
}
.draft-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.draft-actions .btn-urmi { font-size: 10px; min-height: 39px; padding: 10px 12px; gap: 8px; }
.form-status { font-size: 11px; margin-top: 10px; color: var(--blue); }

/* --------------------------------------------------------------- footer --- */
.footer { background: #041525; color: #91aac0; padding: 40px 0 22px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 35px; padding-bottom: 32px; }
/* The footer uses the inverse logo file, so "LIFE" stays legible on navy. */
.footer .wordmark-logo { height: 34px; }
.footer .wordmark small { color: #8da7bd; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 23px; font-size: 11px; color: #bbccdc; }
.footer-summary { font-size: 10px; max-width: 250px; line-height: 1.8; text-align: right; }
.footer-bottom {
  border-top: 1px solid #23405a; display: flex; gap: 20px; justify-content: space-between;
  align-items: center; padding-top: 20px; font-size: 9px; line-height: 1.7;
}
.motion-toggle { background: none; border: 0; color: #a8bfd3; display: flex; align-items: center; gap: 7px; padding: 5px 0; font-size: 9px; }
.motion-toggle i { font-size: 11px; }

/* ------------------------------------------------------ sticky + floating -- */
.sticky-cta { display: none; }
.sticky-cta.visible {
  display: flex; position: fixed; z-index: 1040; bottom: 15px; left: 20px; right: 20px;
  background: #092744f5; backdrop-filter: blur(10px); color: #fff;
  border: 1px solid #395b7b; border-radius: 7px; padding: 10px 12px;
  align-items: center; justify-content: space-between; box-shadow: 0 8px 35px #00132933;
}
.sticky-cta > span { font-size: 10px; line-height: 1.5; }
.sticky-cta > span small { display: block; font-size: 8px; color: #9ab8d1; }
.sticky-cta .btn-urmi { min-height: 38px; padding: 10px 13px; font-size: 10px; gap: 10px; }

.wa-float {
  position: fixed; z-index: 1040; right: 22px; bottom: 22px;
  width: 54px; height: 54px; border-radius: 50%; background: var(--wa); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px #25d36655; transition: transform .25s var(--ease);
}
.wa-float.enabled { display: flex; }
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float i { font-size: 27px; }

/* --------------------------------------------------------------- modal ---- */
.lightbox-modal .modal-dialog { width: min(1100px, calc(100% - 40px)); max-width: none; margin: 20px auto; }
.lightbox-modal .modal-content {
  border: 1px solid #406481; border-radius: 8px; background: var(--deep);
  color: #fff; overflow: hidden; max-height: calc(100vh - 40px);
}
.lightbox-top { display: flex; justify-content: space-between; align-items: center; padding: 17px 23px; border-bottom: 1px solid #254865; gap: 20px; }
.lightbox-top h2 { font-size: 22px; letter-spacing: -.015em; }
.lightbox-top p { font-size: 9px; color: #9bb4c9; letter-spacing: .08em; margin-top: 2px; }
.icon-button {
  display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 4px; color: #fff; background: #ffffff12; flex-shrink: 0; border: 0; transition: background .2s;
}
.icon-button:hover { background: #ffffff24; color: #fff; }
.icon-button i { font-size: 17px; }
.lightbox-image-wrap { min-height: 100px; background: #041221; display: flex; align-items: center; justify-content: center; }
.lightbox-img { display: block; max-width: 100%; width: auto; height: auto; max-height: 65vh; object-fit: contain; margin: 0 auto; }
.lightbox-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 17px 23px; }
.lightbox-footer p { font-size: 10px; color: #a4bdcf; max-width: 690px; }
.lightbox-controls { display: flex; align-items: center; gap: 11px; }
.lightbox-count { font-size: 10px; white-space: nowrap; color: #b7cdde; }
.lightbox-controls .icon-button { width: 36px; height: 36px; }
body.modal-open { overflow: hidden; }

/* ------------------------------------------------------ motion + reveals -- */
.motion-paused *, .motion-paused *::before, .motion-paused *::after {
  animation-play-state: paused !important; transition: none !important;
}
.motion-paused { scroll-behavior: auto; }

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s var(--ease); transition-delay: var(--delay, 0ms); }
  .js [data-reveal].visible { opacity: 1; transform: none; }
  .hero-copy { animation: hero-in .8s var(--ease) both; }
  .photo-story { animation: hero-in 1s .15s var(--ease) both; }
  @keyframes hero-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}
