/* ===========================================================
   VMR GRAINS — Warm Agricultural Theme
   Custom styles built on top of Bootstrap 5
   =========================================================== */

/* ---------- Floating Call + WhatsApp buttons ---------- */
.float-actions {
  position: fixed; right: 20px; bottom: 22px; z-index: 1500;
  display: flex; flex-direction: column; gap: 14px;
}
.fab {
  width: 58px; height: 58px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff !important; text-decoration: none; font-size: 1.55rem;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.fab:hover { transform: translateY(-4px) scale(1.06); color:#fff !important; }
.fab.fab-call { background: linear-gradient(135deg, var(--vmr-pink), var(--vmr-pink-dark)); }
.fab.fab-wa   { background: linear-gradient(135deg, #25d366, #128c7e); }
.fab::before {
  content:""; position:absolute; inset:-6px; border-radius: 50%;
  border: 2px solid currentColor; opacity:.45;
  animation: fabPulse 2.2s ease-out infinite;
}
.fab.fab-call::before { color: var(--vmr-pink); }
.fab.fab-wa::before   { color: #25d366; }
@keyframes fabPulse {
  0%   { transform: scale(.9); opacity:.6; }
  80%  { transform: scale(1.45); opacity:0; }
  100% { opacity:0; }
}
@media (max-width: 575.98px) {
  .float-actions { right: 14px; bottom: 16px; gap: 12px; }
  .fab { width: 52px; height: 52px; font-size: 1.4rem; }
}

:root {
  /* VMR Grains brand palette — sourced from the logo
     Pink (primary) #ed1a6f · Teal (secondary) #2ee0c2 · Yellow accent #f5c518
     Variable names are preserved so legacy rules continue to work. */
  --vmr-pink:       #ed1a6f;
  --vmr-pink-dark:  #c41560;
  --vmr-pink-soft:  #ff5c95;
  --vmr-teal:       #2ee0c2;
  --vmr-teal-dark:  #1bb39c;
  --vmr-teal-soft:  #7ff0dd;

  /* Legacy aliases mapped to the new palette */
  --vmr-green-900: #0c1f2c;          /* deep ink — used for dark surfaces / headings */
  --vmr-green-700: var(--vmr-pink);  /* primary brand */
  --vmr-green-600: var(--vmr-pink-dark);
  --vmr-green-500: var(--vmr-teal);
  --vmr-gold:      #f5c518;          /* yellow accent (matches logo underline) */
  --vmr-gold-soft: #ffd84d;
  --vmr-cream:     #ffffff;
  --vmr-cream-2:   #f5fbfa;          /* very light teal tint */
  --vmr-earth:     var(--vmr-pink-dark);
  --vmr-ink:       #0c1f2c;
  --vmr-muted:     #5b6b78;

  --vmr-shadow-sm: 0 4px 14px rgba(12, 31, 44, .08);
  --vmr-shadow-md: 0 14px 40px rgba(237, 26, 111, .12);
  --vmr-shadow-lg: 0 30px 70px rgba(237, 26, 111, .20);

  --vmr-radius: 14px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--vmr-ink);
  background: var(--vmr-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'ui-monospace', Georgia, serif;
  color: var(--vmr-green-900);
  letter-spacing: -.5px;
  font-weight: 700;
}
a { color: var(--vmr-green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--vmr-gold); }

.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 3px; font-size: .78rem;
  font-weight: 600; color: var(--vmr-gold);
  font-family: 'Inter', sans-serif;
}
.eyebrow::before {
  content: ""; width: 36px; height: 2px; background: var(--vmr-gold);
}
.section-title { font-size: clamp(1.9rem, 2.5vw, 2.8rem); margin-bottom: 1rem; }
.section-lead { color: var(--vmr-muted); font-size: 1.05rem; max-width: 720px; }
.text-gold { color: var(--vmr-gold) !important; }
.bg-cream  { background: var(--vmr-cream) !important; }
.bg-cream-2{ background: var(--vmr-cream-2) !important; }
.bg-green  { background: var(--vmr-green-900) !important; color: #f5efde; }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4 { color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--vmr-green-900);
  color: #d8d2bd;
  font-size: .85rem;
  padding: 8px 0;
}
.topbar a { color: #d8d2bd; }
.topbar a:hover { color: var(--vmr-gold-soft); }
.topbar i { color: var(--vmr-gold-soft); margin-right: 6px; }

/* ---------- Navbar ---------- */
.navbar.vmr-nav {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(31,58,38,.08);
  padding: 0px 0;
  transition: box-shadow .25s;
}
.navbar.vmr-nav.scrolled { box-shadow: var(--vmr-shadow-sm); }
.navbar-brand img { height: 50px; width: auto; }
.vmr-nav .nav-link {
  color: var(--vmr-green-900);
  font-weight: 500;
  margin: 0 6px;
  position: relative;
  padding: 2px 4px !important;
}
.vmr-nav .nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--vmr-gold);
  transition: width .25s, left .25s;
}
.vmr-nav .nav-link:hover::after,
.vmr-nav .nav-link.active::after { width: 100%; left: 0; }
.vmr-nav .nav-link.active,
.vmr-nav .nav-link.active .nav-ico { color: var(--vmr-pink) !important; }

/* ---------- Buttons ---------- */
.btn-vmr {
  background: var(--vmr-pink);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  letter-spacing: .3px;
  box-shadow: 0 8px 18px rgba(237, 26, 111, .32);
  transition: transform .2s, box-shadow .25s, background .25s;
}
.btn-vmr:hover {
  background: var(--vmr-pink-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(237, 26, 111, .45);
}
.btn-outline-vmr {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: all .25s;
}
.btn-outline-vmr:hover { background: #fff; color: var(--vmr-green-900); }
.btn-ghost-green {
  background: transparent;
  color: var(--vmr-green-900);
  border: 2px solid var(--vmr-green-900);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: all .25s;
}
.btn-ghost-green:hover { background: var(--vmr-green-900); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  background: #1c1a14;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(31,58,38,.78) 0%, rgba(31,58,38,.45) 55%, rgba(28,26,20,.25) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 span { color: var(--vmr-gold-soft); font-style: italic; }
.hero p.lead {
  font-size: 1.15rem;
  max-width: 620px;
  color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
}
.hero .stat-row {
  display: flex; gap: 36px; margin-top: 2.5rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 1.75rem;
}
.hero .stat-row .stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--vmr-gold-soft); display: block;
}
.hero .stat-row .stat span {
  font-size: .85rem; color: rgba(255,255,255,.75);
  text-transform: uppercase; letter-spacing: 2px;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.18); }
}

/* ---------- Page header (subpages) ---------- */
.page-header {
  position: relative;
  padding: 64px 0 69px;
  color: #fff;
  background: var(--vmr-green-900);
  overflow: hidden;
}
.page-header__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .35;
}
.page-header::after {
  content:""; position: absolute; inset:0;
  background: linear-gradient(180deg, rgba(31,58,38,.55), rgba(31,58,38,.85));
}
.page-header > .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: .5rem; }
.page-header .crumbs { color: rgba(255,255,255,.8); font-size: .9rem; }
.page-header .crumbs a { color: var(--vmr-gold-soft); }

/* ---------- Cards ---------- */
.feature-card {
  background: #fff;
  border-radius: var(--vmr-radius);
  padding: 36px 28px;
  box-shadow: var(--vmr-shadow-sm);
  border: 1px solid rgba(31,58,38,.06);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vmr-shadow-md);
}
.feature-card .icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vmr-pink) 0%, var(--vmr-teal) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(237, 26, 111, .30);
}
.feature-card h4 { font-size: 1.25rem; margin-bottom: .6rem; }
.feature-card p { color: var(--vmr-muted); margin: 0; }

/* ---------- Product card ---------- */
.product-card {
  background: #fff;
  border-radius: var(--vmr-radius);
  overflow: hidden;
  box-shadow: var(--vmr-shadow-sm);
  transition: transform .35s, box-shadow .35s;
  height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--vmr-shadow-md); }
.product-card .img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--vmr-cream-2);
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .body {
  padding: 22px 24px 26px;
}
.product-card .body h5 { margin-bottom: .35rem; font-size: 1.2rem; }
.product-card .body small { color: var(--vmr-gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.product-card .body p { color: var(--vmr-muted); margin: .5rem 0 0; font-size: .95rem; }

/* ---------- Image with frame ---------- */
.framed-image {
  position: relative;
  border-radius: var(--vmr-radius);
  overflow: hidden;
  box-shadow: var(--vmr-shadow-md);
}
.framed-image::before {
  content: "";
  position: absolute; inset: -14px -14px auto auto;
  width: 120px; height: 120px;
  border: 3px solid var(--vmr-gold);
  border-radius: var(--vmr-radius);
  z-index: -1;
}
.framed-image { aspect-ratio: 4 / 3; max-height: 480px; }
.framed-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Stats strip ---------- */
.stats-strip {
  padding: 70px 0;
  background: #0e1a22; /* dark clean bg */
}

/* Each stat */
.stat-item {
  padding: 20px 10px;
  position: relative;
}

/* NUMBER STYLE (MAIN COLOR) */
.stat-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #00c6ff; /* 🔥 Highlight color */
  margin-bottom: 10px;
  transition: 0.3s;
}

/* TEXT STYLE (SECOND COLOR) */
.stat-item p {
  font-size: 14px;
  letter-spacing: 2px;
  color: #bfc9cf; /* soft gray */
  text-transform: uppercase;
}

/* Divider line */
.stat-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00c6ff;
  transition: 0.3s;
  transform: translateX(-50%);
}

/* Hover effect */
.stat-item:hover h2 {
  transform: scale(1.1);
}

.stat-item:hover::after {
  width: 40px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    linear-gradient(120deg, rgba(31,58,38,.92), rgba(31,58,38,.7)),
    url('../images/shipping.jpg') center/cover;
  border-radius: var(--vmr-radius);
  padding: 60px;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer {
  background: #14241a;
  color: #b8b3a1;
  padding: 70px 0 0;
}
.footer h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.footer a { color: #b8b3a1; display: inline-block; padding: 4px 0; }
.footer a:hover { color: var(--vmr-gold-soft); }
.footer .brand-block img {     height: 107px;
    width: 279px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 0px;
} 
.footer .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  margin-right: 8px;
  transition: all .25s;
}
.footer .social a:hover { background: var(--vmr-gold); color: #fff; border-color: var(--vmr-gold); }
.footer .copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; margin-top: 50px;
  font-size: .88rem; text-align: center;
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(31,58,38,.15);
  background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--vmr-gold);
  box-shadow: 0 0 0 .2rem rgba(201,150,43,.18);
}
.form-label { font-weight: 500; color: var(--vmr-green-900); }

/* ---------- Job card ---------- */
.job-card {
  background:#fff; border-radius: var(--vmr-radius);
  padding: 26px 28px; border: 1px solid rgba(31,58,38,.08);
  display:flex; align-items: center; gap: 24px;
  transition: box-shadow .25s, transform .25s;
}
.job-card:hover { box-shadow: var(--vmr-shadow-md); transform: translateY(-3px); }
.job-card .meta {
  display:flex; gap: 18px; flex-wrap: wrap; color: var(--vmr-muted); font-size: .9rem;
}
.job-card .meta i { color: var(--vmr-gold); margin-right: 4px; }

/* ---------- Reveal animation (only hides when JS is ready) ---------- */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s; }
.js-ready .reveal.in { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.divider-leaf { text-align: center; color: var(--vmr-gold); font-size: 1.2rem; margin: 12px 0 24px; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .cta-banner { padding: 40px 24px; text-align: center; }
  .hero { min-height: 78vh; }
  .job-card { flex-direction: column; align-items: flex-start; }
}

/* ===========================================================
   v2 ADDITIONS — banners, animations & form validation
   =========================================================== */

/* ---------- Hero / Banner carousel ---------- */
.hero-carousel {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: #1c1a14;
  color: #fff;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-slide__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(31,58,38,.82) 0%, rgba(31,58,38,.5) 55%, rgba(28,26,20,.3) 100%);
}
.hero-slide > .container { position: relative; z-index: 2; }
.hero-slide h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  color: #fff; line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero-slide h1 span { color: var(--vmr-gold-soft); font-style: italic; }
.hero-slide .lead {
  font-size: 1.15rem; max-width: 690px;
  color: rgba(255,255,255,.92); margin-bottom: 2rem;
}
.hero-slide.is-active h1,
.hero-slide.is-active .eyebrow,
.hero-slide.is-active .lead,
.hero-slide.is-active .hero-actions {
  animation: slideUpFade .9s cubic-bezier(.2,.7,.2,1) both;
}
.hero-slide.is-active .eyebrow { animation-delay: .1s; }
.hero-slide.is-active h1     { animation-delay: .25s; }
.hero-slide.is-active .lead  { animation-delay: .45s; }
.hero-slide.is-active .hero-actions { animation-delay: .6s; }

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Carousel controls */
.hero-controls {
  position: absolute; left: 0; right: 0; bottom: 26px;
  z-index: 5;
  display: flex; justify-content: center; gap: 12px;
}
.hero-dot {
  width: 38px; height: 4px; border: none; border-radius: 4px;
  background: rgba(255,255,255,.35); cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
}
.hero-dot.is-active { background: var(--vmr-gold-soft); width: 60px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .25s, transform .25s;
}
.hero-arrow:hover { background: var(--vmr-gold); border-color: var(--vmr-gold); transform: translateY(-50%) scale(1.05); }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }
@media (max-width: 768px) {
  .hero-arrow { display: none; }
  .hero-carousel { min-height: 68vh; }
}

/* ---------- Form validation ---------- */
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #c84141 !important;
  background-image: none;
  box-shadow: 0 0 0 .2rem rgba(200,65,65,.12) !important;
}
.form-control.is-valid, .form-select.is-valid {
  border-color: #3b7042 !important;
  background-image: none;
}
.field-error {
  display: none;
  color: #c84141; font-size: .85rem; margin-top: 6px;
  font-weight: 500;
}
.field-error.show { display: block; animation: shake .35s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ---------- Extra animations / utilities ---------- */
.float-anim { animation: floaty 5s ease-in-out infinite; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.hover-lift { transition: transform .3s ease, box-shadow .3s ease; }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--vmr-shadow-md); }

/* Stagger reveal helper — apply data-delay via inline style */
.js-ready .reveal[data-delay="100"] { transition-delay: .1s; }
.js-ready .reveal[data-delay="200"] { transition-delay: .2s; }
.js-ready .reveal[data-delay="300"] { transition-delay: .3s; }
.js-ready .reveal[data-delay="400"] { transition-delay: .4s; }

/* Decorative grain divider */
.grain-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--vmr-gold); font-size: 1.1rem; margin: 8px 0 18px;
}
.grain-divider::before, .grain-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--vmr-gold), transparent);
}

/* Card image overlay on product cards */
.product-card .img-wrap {
  position: relative;
}
.product-card .img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,58,38,.18));
  opacity: 0; transition: opacity .3s;
}
.product-card:hover .img-wrap::after { opacity: 1; }

/* ---------- Products page: large cards + variant list ---------- */
.product-card--xl .img-wrap { height: 280px; }
.product-card--xl .body { padding: 28px 28px 26px; }
.product-card--xl .body h5 { font-size: 1.5rem; margin-top: .35rem; }

.variant-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px dashed rgba(31,58,38,.15);
  padding-top: .9rem;
}
.variant-list li {
  display: flex; align-items: center; gap: .65rem;
  padding: .45rem 0;
  font-weight: 500;
  color: var(--vmr-green-900);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .5s ease, transform .5s ease;
}
.variant-list li .vk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--vmr-cream-2); color: var(--vmr-gold);
  font-weight: 700; font-size: .82rem; flex-shrink: 0;
}
.reveal.in .variant-list li { opacity: 1; transform: none; }
.reveal.in .variant-list li:nth-child(1) { transition-delay: .15s; }
.reveal.in .variant-list li:nth-child(2) { transition-delay: .28s; }
.reveal.in .variant-list li:nth-child(3) { transition-delay: .41s; }

.product-card--xl:hover .variant-list li .vk {
  background: var(--vmr-gold); color: #fff;
  transition: background .25s, color .25s;
}

/* ===========================================================
   v3 — Directional reveals, justified text, check list,
   floating-label form, modern validation
   =========================================================== */

/* Directional reveals (extend base .reveal) */
.js-ready .reveal-left  { transform: translate3d(-40px, 0, 0); }
.js-ready .reveal-right { transform: translate3d( 40px, 0, 0); }
.js-ready .reveal-left.in,
.js-ready .reveal-right.in { transform: translate3d(0,0,0); }

/* Pretty justified paragraphs (no orphan rivers on small screens) */
.text-justify-pretty {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  text-wrap: pretty;
}
@media (max-width: 575.98px) {
  .text-justify-pretty { text-align: left; hyphens: none; }
}

/* Animated check-list (We offer:) */
.check-list {
  list-style: none; padding: 0; margin: 0;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(31,58,38,.10);
  opacity: 0; transform: translateX(-14px);
  transition: opacity .55s ease, transform .55s ease;
}
.check-list li:last-child { border-bottom: 0; }
.reveal.in .check-list li { opacity: 1; transform: none; }
.reveal.in .check-list li:nth-child(1) { transition-delay: .15s; }
.reveal.in .check-list li:nth-child(2) { transition-delay: .30s; }
.reveal.in .check-list li:nth-child(3) { transition-delay: .45s; }
.reveal.in .check-list li:nth-child(4) { transition-delay: .60s; }
.check-list .check-ico {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--vmr-cream-2); color: var(--vmr-gold);
  font-size: 1rem; margin-top: 2px;
  transition: background .25s, color .25s, transform .25s;
}
.check-list li:hover .check-ico {
  background: var(--vmr-gold); color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

/* Tilt-on-hover for framed images */
.tilt-on-hover { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.tilt-on-hover:hover { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-4px); }

/* ===========================================================
   Modern Contact Form — floating labels + animated validation
   =========================================================== */
.contact-form-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(31,58,38,.10);
  border: 1px solid rgba(31,58,38,.06);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content:"";
  position: absolute; top:0; left:0; right:0; height: 4px;
  background: linear-gradient(90deg, var(--vmr-gold), var(--vmr-green-600), var(--vmr-gold));
  background-size: 200% 100%;
  animation: barShift 6s linear infinite;
}
@keyframes barShift { to { background-position: 200% 0; } }
.contact-form-card__head { margin-bottom: 22px; }

@media (max-width: 575.98px) {
  .contact-form-card { padding: 24px 20px; }
}

/* Floating label field */
.float-field {
  position: relative;
}
.float-field .form-control,
.float-field .form-select {
  height: 58px;
  padding: 22px 44px 8px 44px;
  border-radius: 12px;
  border: 1.5px solid rgba(31,58,38,.14);
  background: #fafaf6;
  font-size: .98rem;
  transition: border-color .25s, background .25s, box-shadow .25s;
  box-shadow: none;
}
.float-field--textarea .form-control {
  height: auto; min-height: 140px;
  padding-top: 28px;
  resize: vertical;
}
.float-field .form-control:focus,
.float-field .form-select:focus {
  background: #fff;
  border-color: var(--vmr-gold);
  box-shadow: 0 0 0 4px rgba(201,150,43,.14);
}
.float-field label {
  position: absolute;
  top: 50%; left: 44px;
  transform: translateY(-50%);
  color: var(--vmr-muted);
  font-size: .98rem;
  pointer-events: none;
  transition: top .2s ease, font-size .2s ease, color .2s ease, transform .2s ease;
  background: transparent;
  padding: 0 4px;
  margin: 0;
  font-weight: 500;
}
.float-field--textarea label { top: 22px; transform: none; }

.float-field .form-control:focus ~ label,
.float-field .form-control:not(:placeholder-shown) ~ label,
.float-field .form-select:focus ~ label,
.float-field .form-select:valid ~ label,
.float-field--textarea .form-control:focus ~ label,
.float-field--textarea .form-control:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: .72rem;
  color: var(--vmr-green-700);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
}
.float-field--select label { top: 8px; transform: none; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--vmr-green-700); font-weight: 600; }
.float-field--select .form-select { color: var(--vmr-ink); }

/* Leading icon */
.float-field .field-ico {
  position: absolute;
  left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--vmr-gold);
  font-size: 1.1rem;
  pointer-events: none;
  transition: transform .25s, color .25s;
}
.float-field--textarea .field-ico { top: 24px; transform: none; }
.float-field .form-control:focus ~ .field-ico,
.float-field .form-select:focus ~ .field-ico { color: var(--vmr-green-700); transform: translateY(-50%) scale(1.1); }
.float-field--textarea .form-control:focus ~ .field-ico { transform: scale(1.1); }

/* Status icons (right side) */
.float-field .field-status {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%) scale(.6);
  font-size: 1.15rem;
  opacity: 0;
  transition: opacity .25s, transform .3s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.field-status--ok  { color: #2f8a47; }
.field-status--err { color: #d24545; }
.float-field:has(.is-valid)   .field-status--ok  { opacity: 1; transform: translateY(-50%) scale(1); }
.float-field:has(.is-invalid) .field-status--err { opacity: 1; transform: translateY(-50%) scale(1); animation: pop .35s ease; }
@keyframes pop {
  0% { transform: translateY(-50%) scale(.4); }
  60% { transform: translateY(-50%) scale(1.25); }
  100% { transform: translateY(-50%) scale(1); }
}

/* Override base validation for new style */
.float-field .form-control.is-invalid,
.float-field .form-select.is-invalid {
  border-color: #d24545 !important;
  background: #fff7f7;
  box-shadow: 0 0 0 4px rgba(210,69,69,.10) !important;
  animation: shakeX .35s ease;
}
.float-field .form-control.is-valid,
.float-field .form-select.is-valid {
  border-color: #6db374 !important;
  background: #f6fbf5;
  box-shadow: none !important;
}
@keyframes shakeX {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

/* Field error message */
.float-field + .field-error {
  display: none;
  color: #d24545; font-size: .82rem; margin-top: 6px;
  font-weight: 500;
  padding-left: 14px;
  position: relative;
}
.float-field + .field-error.show {
  display: flex; align-items: center; gap: 6px;
  animation: fadeInErr .3s ease;
}
.float-field + .field-error::before {
  content: "\F33A";
  font-family: 'bootstrap-icons';
  position: absolute; left: -2px; top: 0;
  color: #d24545;
}
@keyframes fadeInErr {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Char counter */
.char-count {
  position: absolute; right: 16px; bottom: 10px;
  font-size: .72rem; color: var(--vmr-muted);
  background: rgba(255,255,255,.85); padding: 2px 8px; border-radius: 10px;
  pointer-events: none;
}
.char-count.is-warn { color: #b87a14; }
.char-count.is-over { color: #d24545; }

/* Submit button extras */
.btn-submit {
  position: relative;
  padding-right: 34px !important;
  overflow: hidden;
}
.btn-submit .bi-arrow-right { transition: transform .25s ease; display: inline-block; }
.btn-submit:hover .bi-arrow-right { transform: translateX(5px); }
.btn-submit.is-loading { pointer-events: none; opacity: .8; }
.btn-submit.is-loading .btn-label::after {
  content: ""; display: inline-block; width: 14px; height: 14px;
  margin-left: 10px; vertical-align: -2px;
  border: 2px solid #fff; border-right-color: transparent; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form note alerts */
#formNote { border: 0; border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; font-weight: 500; }
#formNote.alert-success { background: #eaf6ec; color: #1f5a2c; }
#formNote.alert-danger  { background: #fdecec; color: #8b2a2a; }

/* ---------- Topbar context dropdown & download ---------- */
.topbar .topbar-info span { transition: opacity .25s ease, transform .25s ease; display:inline-flex; align-items:center; }
.topbar .topbar-info.is-swap span { opacity: 0; transform: translateY(-4px); }
.topbar-download {
  display:inline-flex; align-items:center; gap:6px;
  background: var(--vmr-gold); color:#1f1a0a !important;
  padding: 4px 12px; border-radius: 999px; font-weight:600; font-size:.78rem;
  transition: background .2s, transform .2s;
}
.topbar-download:hover { background: var(--vmr-gold-soft); color:#1f1a0a !important; transform: translateY(-1px); }
.topbar-context { position: relative; }
.topbar-context .tc-toggle {
  background: transparent; border: 1px solid rgba(216,210,189,.25);
  color: #d8d2bd; padding: 4px 12px; border-radius: 999px;
  display:inline-flex; align-items:center; gap:6px; font-size:.8rem; cursor:pointer;
  transition: border-color .2s, background .2s;
}
.topbar-context .tc-toggle:hover,
.topbar-context.open .tc-toggle { border-color: var(--vmr-gold-soft); background: rgba(230,185,75,.08); }
.topbar-context .tc-caret { transition: transform .25s ease; font-size:.7rem; }
.topbar-context.open .tc-caret { transform: rotate(180deg); }
.topbar-context .tc-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  list-style: none; margin: 0; padding: 6px;
  background: #16291c; border: 1px solid rgba(230,185,75,.18);
  border-radius: 10px; min-width: 180px; box-shadow: 0 12px 30px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1100;
}
.topbar-context.open .tc-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.topbar-context .tc-menu button {
  width: 100%; text-align: left; background: transparent; border: 0;
  color: #d8d2bd; padding: 8px 12px; border-radius: 6px; font-size: .85rem; cursor:pointer;
  transition: background .15s, color .15s;
}
.topbar-context .tc-menu button:hover { background: rgba(230,185,75,.1); color: var(--vmr-gold-soft); }
.topbar-context .tc-menu button.is-active { background: var(--vmr-gold); color: #1f1a0a; font-weight:600; }

/* ===========================================================
   v4 — Brand refresh + Off-canvas mobile navigation
   =========================================================== */

/* Navbar logo — keep square tile */
.navbar-brand img { height: 50px; width: 50px; object-fit: contain; border-radius: 10px; }

/* Hamburger toggler — pink tint */
.vmr-nav .navbar-toggler {
  border: 1.5px solid var(--vmr-pink);
  padding: 6px 10px;
  border-radius: 10px;
}
.vmr-nav .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(237,26,111,.18); }
.vmr-nav .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='%23ed1a6f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Off-canvas mobile menu */
.offcanvas.vmr-offcanvas {
  background: #ffffff;
  border-left: 4px solid var(--vmr-pink);
  width: 72vw;
  max-width: 360px;
  box-shadow: -20px 0 60px rgba(12,31,44,.18);
}
.vmr-offcanvas .offcanvas-header {
  background: linear-gradient(135deg, var(--vmr-pink) 0%, var(--vmr-pink-dark) 100%);
  color: #fff;
  padding: 18px 22px;
}
.vmr-offcanvas .offcanvas-header .brand-row {
  display: flex; align-items: center; gap: 12px;
}
.vmr-offcanvas .offcanvas-header img {
    height: 45px;
    width: 110px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 10px;
    /* padding: 2px; */
}
}
.vmr-offcanvas .offcanvas-header .brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.15rem; color: #fff; line-height: 1;
}
.vmr-offcanvas .offcanvas-header .brand-tag {
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-top: 4px; display: block;
}
.vmr-offcanvas .btn-close {
  filter: brightness(0) invert(1);
  opacity: .9;
}
.vmr-offcanvas .offcanvas-body { padding: 12px 0 24px; }
.vmr-offcanvas .nav-link {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--vmr-ink) !important;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 14px 26px !important;
  margin: 0 !important;
  border-left: 3px solid transparent;
  transition: background .2s, color .2s, border-color .2s, padding-left .2s;
}
.vmr-offcanvas .nav-link::after { display: none; }
.vmr-offcanvas .nav-link::before {
  content: "›";
  margin-right: 14px;
  color: var(--vmr-teal-dark);
  font-size: 1.2rem; font-weight: 700;
  transition: transform .2s, color .2s;
}
.vmr-offcanvas .nav-link:hover,
.vmr-offcanvas .nav-link.active {
  background: #fff5f9;
  color: var(--vmr-pink) !important;
  border-left-color: var(--vmr-pink);
  padding-left: 30px !important;
}
.vmr-offcanvas .nav-link:hover::before,
.vmr-offcanvas .nav-link.active::before { color: var(--vmr-pink); transform: translateX(3px); }

.vmr-offcanvas .nav-cta {
  margin: 22px 26px 0;
  display: block;
  text-align: center;
}

.vmr-offcanvas .oc-contact {
  margin: 24px 26px 0;
  padding-top: 20px;
  border-top: 1px dashed rgba(12,31,44,.12);
  font-size: .9rem;
  color: var(--vmr-muted);
}
.vmr-offcanvas .oc-contact a { color: var(--vmr-ink); display: block; padding: 4px 0; }
.vmr-offcanvas .oc-contact a:hover { color: var(--vmr-pink); }
.vmr-offcanvas .oc-contact i { color: var(--vmr-pink); margin-right: 8px; }

.vmr-offcanvas .oc-social {
  margin: 18px 26px 0;
  display: flex; gap: 10px;
}
.vmr-offcanvas .oc-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--vmr-cream-2);
  color: var(--vmr-pink);
  transition: background .2s, color .2s, transform .2s;
}
.vmr-offcanvas .oc-social a:hover {
  background: var(--vmr-pink); color: #fff; transform: translateY(-2px);
}

/* Below lg: hide the desktop nav links, show the off-canvas hamburger.
   At lg+: Bootstrap's .navbar-expand-lg already shows .navbar-collapse and hides the toggler. */
@media (max-width: 991.98px) {
  .vmr-nav .navbar-collapse { display: none !important; }
  .vmr-nav .navbar-toggler  { display: inline-flex !important; align-items: center; }
}


/* Nav icons */
.vmr-nav .nav-link, .vmr-offcanvas .nav-link { display: inline-flex; align-items: center; gap: .55rem; }
.vmr-nav .nav-link .nav-ico, .vmr-offcanvas .nav-link .nav-ico {
  font-size: 1rem; color: var(--vmr-pink); transition: transform .2s ease, color .2s ease;
}
.vmr-nav .nav-link:hover .nav-ico, .vmr-nav .nav-link.active .nav-ico,
.vmr-offcanvas .nav-link:hover .nav-ico, .vmr-offcanvas .nav-link.active .nav-ico {
  color: var(--vmr-teal); transform: translateX(2px);
}
/* Wide logo */
.navbar-brand img {     height: 100px;
    width: auto;
    max-width: 277px;
    object-fit: contain;
}}
.vmr-offcanvas .brand-row img { height: 48px; width: auto; max-width: 180px; object-fit: contain; border-radius: 8px; }
@media (max-width: 575.98px){ .navbar-brand img { height: 44px; max-width: 180px; } }

/* ---------- Sticky / Shrunk navbar ---------- */
.navbar.vmr-nav { transition: padding .25s ease, background .25s ease, box-shadow .25s ease; }
.navbar.vmr-nav.scrolled {
  padding: 0 !important;
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.navbar.vmr-nav.scrolled .navbar-brand img {
  height: 52px !important;
  max-width: 160px !important;
  transition: height .25s ease, max-width .25s ease;
}
.navbar.vmr-nav .navbar-brand img { transition: height .25s ease, max-width .25s ease; }
.navbar.vmr-nav.scrolled .nav-link { padding-top: 4px !important; padding-bottom: 4px !important; font-size: .95rem; }
.navbar.vmr-nav.scrolled .nav-link .nav-ico { font-size: .9rem; }
@media (max-width: 575.98px){
  .navbar.vmr-nav.scrolled .navbar-brand img { height: 38px !important; max-width: 140px !important; }
}
