/* ==========================================================
   Custom additions layered on top of the Coriable template.
   Kept separate from style.css so template updates don't
   clobber these; loaded after style.css so it can override.
   ========================================================== */

html {
  scroll-behavior: smooth;
}

.site-logo-img {
  max-height: 42px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.header-cta {
  white-space: nowrap;
}

/* ---------- Hero (scrollable, replaces the old pagepiling slide) ---------- */
.hero-scroll {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #1a1c26 0%, #2b2e3d 100%);
  color: #fff;
  overflow: hidden;
}
.hero-scroll .hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--bs-primary, #f5a623);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-scroll h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-scroll p.lead {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  font-size: 1.1rem;
}
.hero-scroll .hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll img.hero-img {
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

@media (max-width: 767px) {
  .hero-scroll { padding: 120px 0 60px; text-align: center; }
  .hero-scroll .hero-actions { justify-content: center; }
  .hero-scroll p.lead { margin-left: auto; margin-right: auto; }
}

/* ---------- Stats counters ---------- */
.stats-strip {
  background: #12141c;
  color: #fff;
  padding: 50px 0;
}
.stat-item { text-align: center; padding: 10px; }
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--bs-primary, #f5a623);
  line-height: 1;
}
.stat-label {
  margin-top: 8px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
}

/* ---------- Service cards ---------- */
.service-card {
  height: 100%;
  padding: 32px 26px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.service-card .service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,166,35,.12);
  color: var(--bs-primary, #f5a623);
  font-size: 24px;
  margin-bottom: 18px;
}
.service-card h5 { margin-bottom: 10px; }
.service-card p { color: #7a7d8c; font-size: .93rem; }
.service-card .service-link { font-weight: 600; font-size: .9rem; }

/* ---------- Industries grid ---------- */
.industry-card {
  padding: 26px 22px;
  border-radius: 14px;
  border: 1px solid #eceef3;
  height: 100%;
  transition: border-color .2s ease, transform .2s ease;
}
.industry-card:hover { border-color: var(--bs-primary, #f5a623); transform: translateY(-4px); }
.industry-card i { font-size: 28px; color: var(--bs-primary, #f5a623); margin-bottom: 12px; display: block; }

/* ---------- Client logos strip ---------- */
.clients-strip { padding: 50px 0; }
.clients-strip img {
  max-height: 48px;
  width: auto;
  filter: grayscale(100%);
  opacity: .6;
  transition: opacity .2s ease, filter .2s ease;
}
.clients-strip a:hover img { filter: none; opacity: 1; }
.clients-strip .client-item { display: flex; align-items: center; justify-content: center; padding: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #f5a623 0%, #f77f3f 100%);
  color: #fff;
  padding: 70px 0;
  border-radius: 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band .btn-light { font-weight: 600; }

/* ---------- Blog teaser cards ---------- */
.blog-teaser-card { border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.06); height: 100%; }
.blog-teaser-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-teaser-card .body { padding: 20px; }

/* ---------- Section spacing helpers ---------- */
.section-pad { padding: 80px 0; }
@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
}
.section-eyebrow {
  text-transform: uppercase; letter-spacing: .1em; font-size: 13px;
  color: var(--bs-primary, #f5a623); font-weight: 600; margin-bottom: 10px;
}

/* ---------- Booking / custom request forms ---------- */
.booking-card { border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.06); padding: 32px; background: #fff; }

/* ---------- Mobile nav / touch friendliness ---------- */
@media (max-width: 575px) {
  .container, .container-fluid { padding-left: 18px; padding-right: 18px; }
  .btn { padding-top: .55rem; padding-bottom: .55rem; }
  h1 { font-size: 2rem; }
}

/* Larger tap targets on mobile menu */
@media (max-width: 991px) {
  .menu-main ul li a { padding: 10px 0; display: inline-block; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb-nav { background: #f7f8fa; padding: 14px 0; }
.breadcrumb-nav .breadcrumb { margin: 0; padding: 0 15px; font-size: .85rem; }
.breadcrumb-nav .breadcrumb-item a { color: #7a7d8c; text-decoration: none; }
.breadcrumb-nav .breadcrumb-item.active { color: var(--bs-primary, #f5a623); }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000;
  background: #12141c; color: #fff; padding: 18px 20px;
  display: none;
  box-shadow: 0 -6px 24px rgba(0,0,0,.2);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner .inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.8); flex: 1 1 320px; }
.cookie-banner .actions { display: flex; gap: 10px; }

/* ---------- Floating chat widget ---------- */
.chat-launcher {
  position: fixed; right: 22px; bottom: 22px; z-index: 1900;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--bs-primary, #f5a623); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25); border: none; font-size: 24px;
  cursor: pointer;
}
.chat-window {
  position: fixed; right: 22px; bottom: 92px; z-index: 1900;
  width: 330px; max-width: calc(100vw - 44px); max-height: 460px;
  background: #fff; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.25);
  display: none; flex-direction: column; overflow: hidden;
}
.chat-window.is-open { display: flex; }
.chat-window .chat-head { background: #12141c; color: #fff; padding: 14px 16px; font-weight: 600; display:flex; justify-content:space-between; align-items:center; }
.chat-window .chat-body { flex: 1; overflow-y: auto; padding: 14px; background: #f7f8fa; font-size: .88rem; }
.chat-window .chat-msg { margin-bottom: 10px; max-width: 85%; padding: 8px 12px; border-radius: 12px; line-height: 1.4; }
.chat-window .chat-msg.bot { background: #fff; border: 1px solid #eceef3; }
.chat-window .chat-msg.visitor { background: var(--bs-primary, #f5a623); color: #fff; margin-left: auto; }
.chat-window .chat-quick { padding: 8px 14px; display: flex; gap: 6px; flex-wrap: wrap; border-top: 1px solid #eceef3; }
.chat-window .chat-quick button { font-size: .75rem; border: 1px solid #ddd; background: #fff; border-radius: 20px; padding: 4px 10px; }
.chat-window .chat-input { display: flex; border-top: 1px solid #eceef3; }
.chat-window .chat-input input { flex: 1; border: none; padding: 12px; font-size: .85rem; }
.chat-window .chat-input button { border: none; background: var(--bs-primary, #f5a623); color: #fff; padding: 0 16px; }

@media (max-width: 575px) {
  .chat-window { right: 12px; left: 12px; width: auto; bottom: 84px; }
  .chat-launcher { right: 16px; bottom: 16px; }
}

.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
