/* ============================================================
   INNER PAGES — Shared Stylesheet
   Used by: gallery.php, video-gallery.php, single-service.php
   ============================================================= */

/* ── DESIGN TOKENS ── */
:root {
  --ip-ink:        #1C2B4A;
  --ip-ink2:       #4A5568;
  --ip-accent:     #F57920;
  --ip-accent2:    #c45800;
  --ip-bg:         #F5F7FB;
  --ip-white:      #ffffff;
  --ip-border:     rgba(28,43,74,.10);
  --ip-shadow:     0 4px 24px rgba(28,43,74,.09);
  --ip-shadow-lg:  0 14px 52px rgba(28,43,74,.14);
}

/* ============================================================
   1. SHARED PAGE HERO
   ============================================================ */
.ip-hero {
  background: linear-gradient(135deg, #1C2B4A 0%, #16223C 60%, #111A30 100%);
  padding: 110px 0 46px;
  position: relative;
  overflow: hidden;
}
/* subtle grid lines */
.ip-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
/* radial colour accents */
.ip-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 620px 400px at 5% 90%,  rgba(255,125,68,.17) 0%, transparent 55%),
    radial-gradient(ellipse 520px 360px at 92% 10%, rgba(11,158,128,.11) 0%, transparent 55%);
}
.ip-hero-inner { position: relative; z-index: 2; }

/* ── Hero badge ── */
.ip-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,125,68,.15);
  border: 1px solid rgba(255,125,68,.36);
  color: var(--ip-accent);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.ip-badge .ip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ip-accent);
  animation: ipDotPulse 1.8s ease-in-out infinite;
}
@keyframes ipDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .5; }
}

/* ── Hero heading ── */
.ip-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -.04em;
  margin-bottom: 14px;
}
.ip-hero h1 span { color: var(--ip-accent); }

/* ── Hero sub-text ── */
.ip-hero .ip-hero-desc {
  color: rgba(255,255,255,.6);
  font-size: .95rem; max-width: 480px;
  line-height: 1.72; margin-bottom: 0;
}

/* ── Breadcrumb ── */
.ip-breadcrumb {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: .78rem; color: rgba(255,255,255,.45);
}
.ip-breadcrumb li a {
  color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .2s;
}
.ip-breadcrumb li a:hover      { color: var(--ip-accent); }
.ip-breadcrumb li.active       { color: rgba(255,255,255,.82); }
.ip-breadcrumb li::before      { content: '/'; margin-right: 6px; opacity: .35; }
.ip-breadcrumb li:first-child::before { display: none; }

/* ── Hero meta row (service page) ── */
.ip-hero-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 20px; }
.ip-hero-meta-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.68); font-size: .82rem;
}
.ip-hero-meta-item svg { color: var(--ip-accent); }

/* ── Service tag (service page hero) ── */
.ip-service-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,125,68,.20); border: 1px solid rgba(255,125,68,.45);
  color: var(--ip-accent); border-radius: 999px;
  padding: 5px 16px;
  font-size: .70rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Hero BG image variant (single-service full-bleed) ── */
.ip-hero-imgbg {
  position: relative; overflow: hidden;
  min-height: 440px;
  display: flex; align-items: flex-end;
  padding: 0;
  background: none;
}
.ip-hero-imgbg::before,
.ip-hero-imgbg::after { display: none; } /* disable gradient layers for this variant */
.ip-hero-bg-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: ipHeroPan 14s ease-in-out infinite alternate;
}
@keyframes ipHeroPan {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.06) translate(-1%,-1%); }
}
.ip-hero-overlay-layer {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,75,90,.42) 0%, rgba(16,75,90,.88) 100%);
}
.ip-hero-imgbg .ip-hero-inner { padding: 15px 15px 0px; width: 100%; }

/* ============================================================
   2. STATS STRIP  (gallery pages)
   ============================================================ */
.ip-stats-strip {
  background: var(--ip-white);
  border-bottom: 1px solid var(--ip-border);
  padding: 22px 0;
}
.ip-stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--ip-border);
}
.ip-stat-item:last-child { border-right: none; }
.ip-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--ip-ink); line-height: 1; letter-spacing: -.03em;
}
.ip-stat-lbl {
  font-size: .72rem; font-weight: 600;
  color: var(--ip-ink2); letter-spacing: .08em;
  text-transform: uppercase; margin-top: 4px;
}

/* ============================================================
   3. FILTER BAR  (shared between gallery & video-gallery)
   ============================================================ */
.ip-controls {
  background: var(--ip-white);
  padding: 20px 0;
  border-bottom: 1px solid var(--ip-border);
}
.ip-filter-wrap {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: var(--ip-bg);
  border: 1px solid var(--ip-border);
  border-radius: 999px;
  padding: 7px 10px;
  width: fit-content;
}
.ip-filter-btn {
  border: none; background: transparent; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: .8rem; font-weight: 600;
  color: var(--ip-ink2);
  padding: 8px 20px; border-radius: 999px;
  transition: all .25s; white-space: nowrap;
}
.ip-filter-btn:not(.active):hover {
  background: var(--ip-ink); color: #fff;
  box-shadow: 0 4px 14px rgba(16,75,90,.22);
}
.ip-filter-btn.active {
  background: linear-gradient(135deg, var(--ip-accent), var(--ip-accent2));
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,125,68,.30);
}

/* ── Search box ── */
.ip-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: var(--ip-shadow);
  max-width: 280px;
  transition: border-color .25s, box-shadow .25s;
}
.ip-search:focus-within {
  border-color: var(--ip-accent);
  box-shadow: 0 0 0 4px rgba(255,125,68,.10);
}
.ip-search input {
  border: none; outline: none; background: transparent;
  font-size: .84rem; color: var(--ip-ink); width: 100%;
}
.ip-search input::placeholder { color: #b4bbbf; }
.ip-search svg             { flex-shrink: 0; color: var(--ip-ink2); transition: color .2s; }
.ip-search:focus-within svg { color: var(--ip-accent); }

/* ── Count line ── */
.ip-count {
  font-size: .78rem; color: var(--ip-ink2); font-weight: 600;
  padding: 12px 0 0;
}
.ip-count span { color: var(--ip-accent); font-weight: 700; }

/* ── Empty state ── */
.ip-empty { text-align: center; padding: 60px 20px; display: none; }
.ip-empty svg { opacity: .22; margin-bottom: 16px; }
.ip-empty p   { color: var(--ip-ink2); font-size: .9rem; }

/* ============================================================
   4. IMAGE GALLERY  (gallery.php)
   ============================================================ */
.ip-gl-section { padding: 50px 0; background: var(--ip-bg); }

/* CSS masonry */
.ip-gl-grid { column-count: 3; column-gap: 20px; }
@media (max-width: 991px) { .ip-gl-grid { column-count: 2; } }
@media (max-width: 575px) { .ip-gl-grid { column-count: 1; } }

.ip-gl-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 16px; overflow: hidden;
  background: var(--ip-white);
  box-shadow: var(--ip-shadow);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  cursor: pointer;
  animation: ipItemIn .5s cubic-bezier(.22,1,.36,1) both;
}
@keyframes ipItemIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ip-gl-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--ip-shadow-lg);
}
.ip-gl-item.hidden { display: none; }

.ip-gl-img {
  position: relative; overflow: hidden;
}
.ip-gl-img img {
  width: 100%; display: block;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.ip-gl-item:hover .ip-gl-img img { transform: scale(1.06); }

.ip-gl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,75,90,.82) 100%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px;
}
.ip-gl-item:hover .ip-gl-overlay { opacity: 1; }

.ip-gl-overlay-cat {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--ip-accent); color: #fff;
  padding: 3px 10px; border-radius: 999px;
  transform: translateY(10px); transition: transform .3s .08s;
}
.ip-gl-item:hover .ip-gl-overlay-cat { transform: translateY(0); }

.ip-gl-overlay-zoom {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transform: translateY(10px); transition: transform .3s .05s;
}
.ip-gl-item:hover .ip-gl-overlay-zoom { transform: translateY(0); }
.ip-gl-overlay-zoom svg { color: var(--ip-accent); }

.ip-gl-foot {
  padding: 13px 15px 15px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.ip-gl-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .9rem; font-weight: 700; color: var(--ip-ink);
  line-height: 1.3; flex: 1;
}
.ip-gl-search-btn {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--ip-bg); border: 1px solid var(--ip-border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .22s;
}
.ip-gl-search-btn:hover                { background: var(--ip-accent); border-color: var(--ip-accent); }
.ip-gl-search-btn:hover svg            { color: #fff; }
.ip-gl-search-btn svg                  { color: var(--ip-ink2); transition: color .22s; }

/* ============================================================
   5. VIDEO GALLERY  (video-gallery.php)
   ============================================================ */
.ip-vg-featured-section { padding: 56px 0 0; background: var(--ip-white); }

.ip-vg-featured {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: var(--ip-shadow-lg); cursor: pointer;
  display: block; text-decoration: none;
}
.ip-vg-featured img {
  width: 100%; display: block;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.ip-vg-featured:hover img { transform: scale(1.03); }

.ip-vg-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,75,90,.72) 0%, rgba(16,75,90,.34) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.ip-play-lg {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ip-accent), var(--ip-accent2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(255,125,68,.45);
  transition: transform .3s, box-shadow .3s;
}
.ip-vg-featured:hover .ip-play-lg { transform: scale(1.12); box-shadow: 0 12px 48px rgba(255,125,68,.55); }
.ip-play-lg svg { color: #fff; margin-left: 4px; }

.ip-vg-featured-tag {
  background: rgba(255,125,68,.9); color: #fff;
  padding: 4px 14px; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.ip-vg-featured-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700;
  color: #fff; text-align: center; line-height: 1.3; padding: 0 32px;
}
.ip-vg-featured-dur {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,.55); color: #fff;
  padding: 3px 10px; border-radius: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
}

/* Video grid */
.ip-vg-section { padding: 50px 0; background: var(--ip-bg); }

.ip-vg-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
@media (max-width: 991px) { .ip-vg-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .ip-vg-grid { grid-template-columns: 1fr; } }

.ip-vg-item {
  background: var(--ip-white); border-radius: 10px; overflow: hidden;
  box-shadow: var(--ip-shadow);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  animation: ipItemIn .5s cubic-bezier(.22,1,.36,1) both;
  cursor: pointer;
}
.ip-vg-item:hover { transform: translateY(-8px); box-shadow: var(--ip-shadow-lg); }
.ip-vg-item.hidden { display: none; }

.ip-vg-thumb {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
}
.ip-vg-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.ip-vg-item:hover .ip-vg-thumb img { transform: scale(1.07); }

.ip-vg-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(16,75,90,.72) 100%);
  display: flex; align-items: center; justify-content: center;
}
.ip-play-sm {
  width: 48px; height: 48px; border-radius: 50%;
  backdrop-filter: blur(12px);
  background: rgba(5, 16, 27, 0.35);
  display: flex; align-items: center; justify-content: center;
  /* box-shadow: 0 6px 24px rgba(255,125,68,.4); */
  transition: transform .3s, box-shadow .3s;
}
.ip-vg-item:hover .ip-play-sm { transform: scale(1.15); }
.ip-play-sm svg { color: #fff; margin-left: 0; }

.ip-vg-thumb-dur {
  position: absolute; bottom: 9px; right: 9px;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 6px; letter-spacing: .04em;
}
.ip-vg-thumb-cat {
  position: absolute; top: 9px; left: 9px;
  background: rgba(255,125,68,.92); color: #fff;
  font-size: .62rem; font-weight: 700;
  padding: 2px 10px; border-radius: 999px;
  letter-spacing: .08em; text-transform: uppercase;
}
.ip-vg-body { padding: 16px 18px 18px; }
.ip-vg-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; color: var(--ip-ink2); margin-bottom: 8px;
}
.ip-vg-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ip-ink2); opacity: .4; }
.ip-vg-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--ip-ink);
  line-height: 1.3; margin-bottom: 12px;
}
.ip-vg-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.ip-watch-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ip-bg); border: 1px solid var(--ip-border);
  color: var(--ip-ink2); font-size: .75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  text-decoration: none; transition: all .22s;
}
.ip-watch-btn:hover { background: var(--ip-accent); border-color: var(--ip-accent); color: #fff; }

.ip-vg-search-btn {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--ip-bg); border: 1px solid var(--ip-border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .22s;
}
.ip-vg-search-btn:hover               { background: var(--ip-accent); border-color: var(--ip-accent); }
.ip-vg-search-btn:hover svg           { color: #fff; }
.ip-vg-search-btn svg                 { color: var(--ip-ink2); transition: color .22s; }

/* ============================================================
   6. SINGLE SERVICE PAGE  (single-service.php)
   ============================================================ */
.ip-ss-body { background: var(--ip-bg); padding: 60px 0 80px; }
.ip-ss-sidebar { position: sticky; top: 100px; }

/* Content cards */
.ip-ss-card {
  background: var(--ip-white);
  border-radius: 20px; border: 1px solid var(--ip-border);
  box-shadow: var(--ip-shadow);
  padding: 36px 40px; margin-bottom: 24px;
  animation: ipItemIn .6s cubic-bezier(.22,1,.36,1) both;
}
.ip-ss-card:nth-child(2) { animation-delay: .08s; }
.ip-ss-card:nth-child(3) { animation-delay: .16s; }
.ip-ss-card:nth-child(4) { animation-delay: .24s; }
.ip-ss-card:nth-child(5) { animation-delay: .32s; }
.ip-ss-card:nth-child(6) { animation-delay: .40s; }

.ip-ss-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ip-accent); margin-bottom: 12px;
}
.ip-ss-label::before { content: ''; width: 18px; height: 2px; background: var(--ip-accent); border-radius: 2px; }
.ip-ss-card h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem; font-weight: 800; color: var(--ip-ink);
  letter-spacing: -.03em; margin-bottom: 16px;
}
.ip-ss-card p { color: var(--ip-ink2); line-height: 1.76; font-size: .92rem; margin-bottom: 1.2em; }
.ip-ss-card p:last-child { margin-bottom: 0; }

/* Image reveal */
.ip-ss-img-reveal { border-radius: 14px; overflow: hidden; margin: 26px 0; position: relative; }
.ip-ss-img-reveal img { width: 100%; display: block; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.ip-ss-img-reveal:hover img { transform: scale(1.03); }
.ip-ss-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(16,75,90,.8));
  padding: 20px 18px 14px;
  font-size: .78rem; color: rgba(255,255,255,.85);
}

/* Highlight list */
.ip-ss-hl-list {
  list-style: none; padding: 0; margin: 0 0 1.2em;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px;
}
@media (max-width: 575px) { .ip-ss-hl-list { grid-template-columns: 1fr; } }
.ip-ss-hl-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--ip-ink2); line-height: 1.5;
  padding: 10px 14px; border-radius: 10px;
  background: var(--ip-bg); border: 1px solid var(--ip-border);
  transition: all .22s;
}
.ip-ss-hl-list li:hover {
  border-color: rgba(255,125,68,.3); background: #fff8f5;
  transform: translateX(3px);
}
.ip-ss-hl-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,125,68,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--ip-accent);
}

/* Stats row */
.ip-ss-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 26px 0;
}
@media (max-width: 767px) { .ip-ss-stats-row { grid-template-columns: repeat(2,1fr); } }
.ip-ss-stat {
  text-align: center; padding: 20px 12px;
  background: var(--ip-bg); border-radius: 14px;
  border: 1px solid var(--ip-border); transition: all .25s;
}
.ip-ss-stat:hover { background: var(--ip-white); box-shadow: var(--ip-shadow); transform: translateY(-4px); }
.ip-ss-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--ip-ink);
  letter-spacing: -.04em; line-height: 1;
}
.ip-ss-stat-lbl {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ip-ink2); margin-top: 6px;
}

/* Process steps */
.ip-ss-steps { counter-reset: step; display: flex; flex-direction: column; }
.ip-ss-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--ip-border);
  transition: all .22s; cursor: default;
}
.ip-ss-step:last-child { border-bottom: none; }
.ip-ss-step:hover .ip-ss-step-num { background: var(--ip-accent); color: #fff; transform: scale(1.1); }
.ip-ss-step-num {
  counter-increment: step;
  min-width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--ip-bg); border: 1px solid var(--ip-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--ip-ink);
  transition: all .25s;
}
.ip-ss-step-body h4 { font-size: .95rem; font-weight: 700; color: var(--ip-ink); margin-bottom: 5px; }
.ip-ss-step-body p  { font-size: .83rem; color: var(--ip-ink2); line-height: 1.6; margin: 0; }

/* Tags */
.ip-ss-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ip-ss-tag {
  font-size: .74rem; font-weight: 600;
  padding: 5px 14px; border-radius: 999px;
  background: var(--ip-bg); border: 1px solid var(--ip-border);
  color: var(--ip-ink2); transition: all .2s; cursor: default;
}
.ip-ss-tag:hover { background: var(--ip-ink); color: #fff; }

/* Social share */
.ip-ss-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-top: 8px; }
.ip-ss-share a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--ip-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ip-ink2); font-size: .82rem;
  text-decoration: none; transition: all .22s;
}
.ip-ss-share a:hover                 { background: var(--ip-ink);  border-color: var(--ip-ink); color: #fff; }
.ip-ss-share a.ip-fb:hover           { background: #1877f2; border-color: #1877f2; }
.ip-ss-share a.ip-li:hover           { background: #0077b5; border-color: #0077b5; }
.ip-ss-share a.ip-ig:hover           { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #dc2743; }
.ip-ss-share a.ip-wa:hover           { background: #25d366; border-color: #25d366; }

/* ── Sidebar CTA ── */
.ip-ss-cta {
  border-radius: 20px; overflow: hidden; margin-bottom: 22px; position: relative;
  animation: ipItemIn .6s .3s cubic-bezier(.22,1,.36,1) both;
}
.ip-ss-cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ip-ss-cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(16,75,90,.92), rgba(16,75,90,.75));
}
.ip-ss-cta-inner  { position: relative; z-index: 2; padding: 32px 28px; }
.ip-ss-cta-logo   { margin-bottom: 18px; }
.ip-ss-cta h3     { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 10px; }
.ip-ss-cta p      { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 20px; }

.ip-ss-cta-phone {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 14px 18px; margin-bottom: 18px;
  text-decoration: none; transition: all .22s;
}
.ip-ss-cta-phone:hover { background: rgba(255,125,68,.26); border-color: rgba(255,125,68,.5); }
.ip-ss-cta-phone-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ip-accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ip-ss-cta-phone-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; }
.ip-ss-cta-phone-lbl { font-size: .68rem; color: rgba(255,255,255,.6); letter-spacing: .05em; margin-bottom: 3px; }

.ip-ss-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: linear-gradient(135deg, var(--ip-accent), var(--ip-accent2));
  color: #fff; border: none; border-radius: 12px; padding: 14px;
  font-weight: 700; font-size: .88rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(255,125,68,.35); transition: all .25s;
}
.ip-ss-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(255,125,68,.45); color: #fff; }

/* ── Sidebar service list ── */
.ip-ss-service-list {
  background: var(--ip-white); border-radius: 20px;
  border: 1px solid var(--ip-border); box-shadow: var(--ip-shadow);
  overflow: hidden; margin-bottom: 22px;
  animation: ipItemIn .6s .4s cubic-bezier(.22,1,.36,1) both;
}
.ip-ss-slist-head { padding: 20px 24px; border-bottom: 1px solid var(--ip-border); }
.ip-ss-slist-head h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 800; color: var(--ip-ink); }
.ip-ss-service-list ul { list-style: none; padding: 0; margin: 0; }
.ip-ss-service-list ul li { border-bottom: 1px solid var(--ip-border); }
.ip-ss-service-list ul li:last-child { border-bottom: none; }
.ip-ss-service-list ul li a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 24px; text-decoration: none;
  color: var(--ip-ink2); font-size: .875rem; font-weight: 600;
  transition: all .22s;
}
.ip-ss-service-list ul li a:hover          { background: var(--ip-bg); color: var(--ip-accent); padding-left: 30px; }
.ip-ss-service-list ul li.active a         { background: rgba(255,125,68,.07); color: var(--ip-accent); border-left: 3px solid var(--ip-accent); padding-left: 21px; }
.ip-ss-service-list ul li a svg            { flex-shrink: 0; opacity: .45; transition: all .22s; }
.ip-ss-service-list ul li a:hover svg      { opacity: 1; transform: translateX(3px); }

/* ── Sidebar quick stats ── */
.ip-ss-qs {
  background: linear-gradient(135deg, var(--ip-ink) 0%, #111A30 100%);
  border-radius: 20px; padding: 26px 24px; margin-bottom: 22px;
  animation: ipItemIn .6s .5s cubic-bezier(.22,1,.36,1) both;
}
.ip-ss-qs h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 18px; }
.ip-ss-qs-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ip-ss-qs-row:last-child { border-bottom: none; }
.ip-ss-qs-lbl { font-size: .8rem; color: rgba(255,255,255,.65); }
.ip-ss-qs-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 800; color: var(--ip-accent); }

/* ── Related section ── */
.ip-ss-related { padding: 60px 0 80px; background: var(--ip-white); }
.ip-ss-section-head { margin-bottom: 36px; }
.ip-ss-section-lbl {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ip-accent); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.ip-ss-section-lbl::after { content: ''; flex: 1; height: 1px; background: rgba(255,125,68,.25); }
.ip-ss-section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--ip-ink); letter-spacing: -.03em;
}
.ip-ss-rel-card {
  background: var(--ip-bg); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--ip-border); height: 100%;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.ip-ss-rel-card:hover { transform: translateY(-6px); box-shadow: var(--ip-shadow-lg); background: var(--ip-white); }
.ip-ss-rel-img { overflow: hidden; aspect-ratio: 16/9; }
.ip-ss-rel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.ip-ss-rel-card:hover .ip-ss-rel-img img { transform: scale(1.07); }
.ip-ss-rel-body { padding: 20px 22px; }
.ip-ss-rel-tag  { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ip-accent); margin-bottom: 8px; }
.ip-ss-rel-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--ip-ink); line-height: 1.3; margin-bottom: 10px; }
.ip-ss-rel-desc  { font-size: .82rem; color: var(--ip-ink2); line-height: 1.6; margin-bottom: 16px; }
.ip-ss-rel-link  { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--ip-accent); text-decoration: none; transition: gap .2s; }
.ip-ss-rel-link:hover { gap: 10px; }

/* ============================================================
   7. SERVICES PAGE — Modern Card Grid  (ip-svc-*)
   ============================================================ */
.ip-svc-section {
  background: var(--ip-bg);
  padding: 96px 0 80px;
}

/* Section header */
.ip-svc-header {
  text-align: center;
  margin-bottom: 60px;
}
.ip-svc-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ip-ink);
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 16px 0 14px;
}
.ip-svc-header h2 span { color: var(--ip-accent); }
.ip-svc-header p {
  color: var(--ip-ink2);
  font-size: .96rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 3×2 card grid */
.ip-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

/* Card */
.ip-svc-card {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: 18px;
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--ip-shadow);
  transition: transform .3s var(--pr-ease, ease), box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.ip-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ip-accent), #d96510);
  opacity: 0;
  transition: opacity .3s ease;
}
.ip-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ip-shadow-lg);
  border-color: rgba(245, 121, 32, .25);
}
.ip-svc-card:hover::before { opacity: 1; }

/* Featured card — darker accent bg */
.ip-svc-card--featured {
  background: linear-gradient(135deg, var(--ip-ink) 0%, #0e1d36 100%);
  border-color: rgba(245, 121, 32, .30);
  color: #fff;
}
.ip-svc-card--featured::before { opacity: 1; height: 2px; }
.ip-svc-card--featured h3 { color: #ffffff; }
.ip-svc-card--featured p  { color: rgba(255,255,255,.60); }
.ip-svc-card--featured .ip-svc-tags span {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.70);
}
.ip-svc-card--featured .ip-svc-link { color: #fff; border-color: rgba(255,255,255,.20); }
.ip-svc-card--featured .ip-svc-link:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.40);
}

/* Icon */
.ip-svc-icon {
  width: 52px; height: 52px;
  background: rgba(245, 121, 32, .10);
  border: 1px solid rgba(245, 121, 32, .20);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ip-accent);
  font-size: 1.35rem;
  transition: background .3s ease, transform .3s ease;
}
.ip-svc-card:hover .ip-svc-icon {
  background: rgba(245, 121, 32, .18);
  transform: scale(1.08);
}
.ip-svc-card--featured .ip-svc-icon {
  background: rgba(245, 121, 32, .20);
  border-color: rgba(245, 121, 32, .35);
}

/* Heading & body */
.ip-svc-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ip-ink);
  margin: 0;
  line-height: 1.25;
}
.ip-svc-card p {
  font-size: .875rem;
  color: var(--ip-ink2);
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

/* Tags */
.ip-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ip-svc-tags span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ip-ink2);
  background: var(--ip-bg);
  border: 1px solid var(--ip-border);
  border-radius: 999px;
  padding: 3px 11px;
}

/* Link */
.ip-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ip-accent);
  text-decoration: none;
  border: 1px solid rgba(245,121,32,.25);
  border-radius: 999px;
  padding: 7px 16px;
  align-self: flex-start;
  transition: background .25s ease, gap .2s ease;
}
.ip-svc-link:hover {
  background: rgba(245,121,32,.08);
  gap: 10px;
  color: var(--ip-accent);
}

/* CTA strip */
.ip-svc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: var(--ip-shadow);
}
.ip-svc-cta p {
  font-size: 1rem;
  color: var(--ip-ink2);
  margin: 0;
}
.ip-svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--ip-accent), var(--ip-accent2));
  color: #ffffff;
  font-size: .875rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: box-shadow .3s ease, transform .3s ease;
  box-shadow: 0 4px 16px rgba(245,121,32,.30);
}
.ip-svc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,121,32,.45);
  color: #ffffff;
}

/* ============================================================
   8. CONTACT PAGE — Form & Map section
   ============================================================ */
.page-contact-us {
  background: var(--ip-bg);
}

/* Form fields */
.contact-form .form-floating .form-control {
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  font-size: .9rem !important;
  color: var(--ip-ink) !important;
  padding-top: 1.4rem !important;
  transition: border-color .25s ease, box-shadow .25s ease !important;
}
.contact-form .form-floating .form-control:focus {
  border-color: var(--ip-accent) !important;
  box-shadow: 0 0 0 3px rgba(245,121,32,.12) !important;
  outline: none !important;
}
.contact-form .form-floating label {
  color: #8A97B0 !important;
  font-size: .85rem !important;
}
.contact-form .form-floating svg {
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  color: #CBD5E0;
  pointer-events: none;
}
.contact-form textarea.form-control { resize: none !important; }

/* Submit button */
.contact-form-btn .btn-default {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 32px !important;
  background: linear-gradient(135deg, var(--ip-accent), var(--ip-accent2)) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  font-size: .9rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: transform .3s ease, box-shadow .3s ease !important;
  box-shadow: 0 4px 16px rgba(245,121,32,.30) !important;
}
.contact-form-btn .btn-default:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(245,121,32,.45) !important;
}

/* Opening hours box */
.opening-hour-box {
  background: #F5F7FB;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 16px;
}
.opening-hour-box h3 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ip-ink2);
  margin-bottom: 12px;
}
.opening-hour-box ul {
  list-style: none; padding: 0; margin: 0;
}
.opening-hour-box ul li {
  display: flex; justify-content: space-between;
  font-size: .875rem; color: var(--ip-ink);
  padding: 6px 0;
  border-bottom: 1px solid #E8EDF4;
}
.opening-hour-box ul li:last-child { border-bottom: none; }
.opening-hour-box ul li span { color: var(--ip-ink2); font-weight: 600; }

/* Contact info items (map section) */
.contact-info-item {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px 18px;
  gap: 14px !important;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.contact-info-item:hover {
  box-shadow: 0 4px 20px rgba(28,43,74,.09);
  border-color: rgba(245,121,32,.25);
}
.contact-info-item .icon-box {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(245,121,32,.10);
  border: 1px solid rgba(245,121,32,.20);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ip-accent);
  transition: background .25s ease;
  margin-right: 14px;
}
.contact-info-item:hover .icon-box { background: rgba(245,121,32,.18); }
.contact-info-item-content h4 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ip-ink2);
  margin-bottom: 4px;
}
.contact-info-item-content p {
  font-size: .875rem;
  color: var(--ip-ink);
  margin: 0;
  line-height: 1.55;
}
.contact-info-item-content p a {
  color: var(--ip-ink);
  text-decoration: none;
  transition: color .2s;
}
.contact-info-item-content p a:hover { color: var(--ip-accent); }

/* Google map */
.google-map-iframe iframe {
  width: 100%;
  height: 380px;
  border-radius: 18px !important;
  box-shadow: 0 4px 24px rgba(28,43,74,.12);
  display: block;
}

/* ============================================================
   9. BLOG PAGE — Post card improvements
   ============================================================ */
.post-item {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.post-item:hover {
  box-shadow: 0 8px 36px rgba(28,43,74,.12);
  transform: translateY(-4px);
}
.post-featured-image figure {
  margin: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-featured-image figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.post-item:hover .post-featured-image figure img { transform: scale(1.06); }

.post-item-tags { margin-top: 10px; }
.post-item-tags a {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ip-accent);
  background: rgba(245,121,32,.10);
  border: 1px solid rgba(245,121,32,.22);
  border-radius: 999px;
  padding: 4px 12px;
  text-decoration: none;
  transition: background .2s ease;
}
.post-item-tags a:hover { background: rgba(245,121,32,.20); }

.post-item-body { padding: 20px 24px 22px; }

.post-item-content .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ip-ink2);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.post-item-content .date-badge i { color: var(--ip-accent); }

.post-item-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ip-ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-item-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.post-item-content h3 a:hover { color: var(--ip-accent); }
.post-item-content p { font-size: .875rem; color: var(--ip-ink2); line-height: 1.65; margin: 0; }

.post-item-btn { margin-top: 14px; }
.readmore-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  color: var(--ip-accent) !important;
  text-decoration: none !important;
  border: 1px solid rgba(245,121,32,.28) !important;
  border-radius: 999px !important;
  padding: 8px 18px !important;
  transition: background .25s ease, gap .2s ease !important;
}
.readmore-btn::after { content: '→'; }
.readmore-btn:hover {
  background: rgba(245,121,32,.08) !important;
  gap: 10px !important;
  color: var(--ip-accent) !important;
}

/* Sidebar */
.page-category-list {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 22px 22px;
  margin-bottom: 24px;
}
.page-category-list h3 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ip-ink2);
  margin-bottom: 14px;
}
.page-category-list ul { list-style: none; padding: 0; margin: 0; }
.page-category-list ul li {
  border-bottom: 1px solid #F0F3F8;
}
.page-category-list ul li:last-child { border-bottom: none; }
.page-category-list ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .875rem;
  color: var(--ip-ink);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease, padding-left .2s ease;
}
.page-category-list ul li a::after { content: '›'; color: var(--ip-accent); font-size: 1.1rem; }
.page-category-list ul li a:hover { color: var(--ip-accent); padding-left: 4px; }

/* Sidebar CTA */
.sidebar-cta-box {
  border-radius: 16px;
  overflow: hidden;
  padding: 28px 22px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sidebar-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,22,40,.84) 0%, rgba(11,22,40,.94) 100%);
}
.sidebar-cta-box > * { position: relative; z-index: 1; }
.sidebar-cta-logo { margin-bottom: 20px; }
.sidebar-cta-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.sidebar-cta-content p { font-size: .84rem; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.sidebar-cta-contact-item h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ip-accent);
  margin-bottom: 0;
}
.sidebar-cta-contact-item h3 a { color: inherit; text-decoration: none; }

/* ============================================================
   10. RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .ip-svc-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .ip-svc-cta  { flex-direction: column; align-items: flex-start; padding: 20px 22px; }
}
@media (max-width: 767px) {
  .ip-hero          { padding: 140px 0 40px; }
  .ip-ss-card       { padding: 20px 15px; border-radius: 10px; }
  .ip-ss-cta-inner  { padding: 24px 24px; border-radius: 10px; }
  .ip-filter-wrap   { border-radius: 10px; }
  .ip-filter-btn    { padding: 8px 12px; }
  .ip-svc-section   { padding: 64px 0 56px; }
  .ip-svc-header    { margin-bottom: 40px; }
  .post-item { flex-direction: column !important; }
  .post-featured-image { width: 100% !important; }
}
@media (max-width: 575px) {
  .ip-svc-grid { grid-template-columns: 1fr !important; }
  .ip-svc-cta-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   11. SERVICE DETAIL PAGES — FAQ & Industries
   ============================================================ */

/* FAQ accordion-style */
.ip-ss-faq { display: flex; flex-direction: column; gap: 0; }
.ip-ss-faq-item {
  border-bottom: 1px solid var(--ip-border);
  padding: 18px 0;
}
.ip-ss-faq-item:first-child { padding-top: 4px; }
.ip-ss-faq-item:last-child  { border-bottom: none; padding-bottom: 0; }
.ip-ss-faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .97rem; font-weight: 700;
  color: var(--ip-ink); margin-bottom: 10px;
  cursor: default;
  display: flex; align-items: flex-start; gap: 10px;
}
.ip-ss-faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--ip-accent);
  color: #fff; border-radius: 50%;
  font-size: .7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.ip-ss-faq-a {
  font-size: .87rem; color: var(--ip-ink2);
  line-height: 1.7; padding-left: 32px;
}

/* Nav dropdown — icon alignment for service links */
.navbar-nav .nav-item.submenu > ul .nav-link.d-flex.gap-2 {
  gap: 10px !important;
}
.navbar-nav .nav-item.submenu > ul .nav-link.d-flex.gap-2 i {
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

/* ============================================================
   BLOG — jt-blog-* styles
   ============================================================ */
.jt-blog-hero {
  background: linear-gradient(135deg, #1C2B4A 0%, #0D1828 100%) !important;
}
.jt-blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
}
.jt-blog-meta i { color: #F57920; font-size: 13px; }
.jt-blog-meta-sep { color: rgba(255,255,255,0.25); }

/* Related posts */
.jt-related-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1C2B4A;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eaeff7;
}
.jt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jt-related-card {
  background: #F5F7FB;
  border: 1.5px solid #eaeff7;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
}
.jt-related-card:hover {
  border-color: rgba(245,121,32,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,43,74,0.08);
}
.jt-related-card-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F57920;
  background: rgba(245,121,32,0.08);
  padding: 4px 10px;
}
.jt-related-card-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #1C2B4A;
  padding: 10px 12px 14px;
  line-height: 1.4;
  font-family: "Bricolage Grotesque", sans-serif;
}
.jt-related-card:hover .jt-related-card-title { color: #F57920; }

/* Article typography */
.post-entry h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #1C2B4A;
  margin: 32px 0 12px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.post-entry h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1C2B4A;
  margin: 24px 0 10px;
}
.post-entry p {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.78;
  margin-bottom: 16px;
}
.post-entry ul, .post-entry ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.post-entry li {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 8px;
}
.post-entry a { color: #F57920; }
.post-entry strong { color: #1C2B4A; }

/* Comparison table */
.post-entry table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,43,74,0.07);
}
.post-entry table thead th {
  background: #1C2B4A;
  color: #fff;
  font-weight: 700;
  padding: 13px 16px;
  text-align: left;
  font-family: "Bricolage Grotesque", sans-serif;
}
.post-entry table thead th:first-child { color: #F57920; }
.post-entry table tbody tr:nth-child(even) { background: #F5F7FB; }
.post-entry table tbody tr:nth-child(odd) { background: #fff; }
.post-entry table tbody td {
  padding: 11px 16px;
  color: #4A5568;
  border-bottom: 1px solid #eaeff7;
}
.post-entry table tbody td:first-child { font-weight: 700; color: #1C2B4A; }

/* Highlight box */
.post-highlight {
  background: linear-gradient(135deg, rgba(245,121,32,0.07) 0%, rgba(245,121,32,0.03) 100%);
  border-left: 4px solid #F57920;
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.post-highlight p { margin: 0 !important; font-size: 14.5px !important; }

/* CTA block inside article */
.post-cta-block {
  background: linear-gradient(135deg, #1C2B4A 0%, #0D1828 100%);
  border-radius: 16px;
  padding: 28px 28px;
  margin: 32px 0 8px;
  text-align: center;
}
.post-cta-block h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.post-cta-block p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 13.5px !important;
  margin: 0 0 18px !important;
}
.post-cta-block a.post-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F57920;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 24px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s;
}
.post-cta-block a.post-cta-btn:hover { background: #e06a10; }

@media (max-width: 767px) {
  .jt-related-grid { grid-template-columns: 1fr; }
  .post-entry h2 { font-size: 1.25rem; }
  .post-entry table { font-size: 12.5px; }
  .post-entry table thead th, .post-entry table tbody td { padding: 9px 12px; }
}

/* ============================================================
   CONTACT PAGE ENHANCEMENTS
   ============================================================ */

/* ── Stats Strip ── */
.jt-ct-stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--ip-border);
  padding: 0;
}
.jt-ct-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.jt-ct-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 40px;
  gap: 4px;
}
.jt-ct-stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ip-ink);
  line-height: 1;
}
.jt-ct-stat-label {
  font-size: 12.5px;
  color: var(--ip-ink2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.jt-ct-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--ip-border);
  flex-shrink: 0;
}

/* ── Form Card ── */
.jt-ct-form-card {
  background: #fff;
  border: 1px solid var(--ip-border);
  border-radius: 18px;
  padding: 36px 36px 32px;
  box-shadow: var(--ip-shadow);
}
.jt-ct-form-header {
  margin-bottom: 28px;
}
.jt-ct-form-header h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ip-ink);
  margin: 0 0 8px;
}
.jt-ct-form-header p {
  color: var(--ip-ink2);
  font-size: 14.5px;
  margin: 0;
}

/* ── Field icons ── */
.jt-field-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ip-accent);
  font-size: 14px;
  pointer-events: none;
}
.jt-field-icon--ta {
  top: 22px;
  transform: none;
}

/* Required star */
.jt-req { color: var(--ip-accent); font-size: 12px; }

/* ── Floating label fix — overrides premium-redesign.css !important globals ──
   Bootstrap 5 floating labels need a fixed height + specific padding-top/bottom
   to animate. premium-redesign.css sets padding:13px 16px !important and
   height:auto !important globally on .form-control, which breaks them.      */
.jt-ct-form-card .form-floating > .form-control,
.jt-ct-form-card .form-floating > select.form-control {
  height: calc(3.5rem + 2px) !important;
  min-height: calc(3.5rem + 2px) !important;
  padding: 1rem 42px 1rem 0.75rem !important;
  line-height: 1.25 !important;
}
/* When focused or filled — label animates up, input shifts padding */
.jt-ct-form-card .form-floating > .form-control:focus,
.jt-ct-form-card .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem !important;
  padding-bottom: 0.625rem !important;
}
/* Select always shows label in "up" position */
.jt-ct-form-card .form-floating > select.form-control {
  padding-top: 1.625rem !important;
  padding-bottom: 0.625rem !important;
}
/* Textarea — fixed height, override height:auto !important */
.jt-ct-form-card .form-floating > textarea.form-control {
  height: 110px !important;
  min-height: 110px !important;
  padding: 1.625rem 42px 0.625rem 0.75rem !important;
  resize: none;
}

/* Select dropdown arrow (appearance:none removes native arrow) */
.jt-ct-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F57920' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 40px center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Submit row */
.jt-ct-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.jt-ct-submit-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 28px !important; /* no extra right padding — no SVG arrow */
  font-size: 15px !important;
  white-space: nowrap;
}
/* Hide the SVG arrow pseudo-element — we use an <i> FA icon inside instead */
.jt-ct-submit-btn::before { display: none !important; }
.jt-ct-submit-btn i { font-size: 13px; transition: transform 0.2s; position: static !important; }
.jt-ct-submit-btn:hover i { transform: translateX(4px); }
.jt-ct-privacy {
  font-size: 12.5px;
  color: var(--ip-ink2);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.jt-ct-privacy i { color: #4ade80; font-size: 11px; }

/* ── Contact Channel Cards ── */
.jt-ct-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.jt-ct-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ip-border);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.jt-ct-channel:hover {
  box-shadow: var(--ip-shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.jt-ct-ch-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.jt-ct-channel--wa .jt-ct-ch-icon  { background: #e7faf0; color: #25D366; }
.jt-ct-channel--call .jt-ct-ch-icon { background: #fff3eb; color: var(--ip-accent); }
.jt-ct-channel--mail .jt-ct-ch-icon { background: #eef3ff; color: #4a6cf7; }
.jt-ct-channel--wa:hover  { border-color: #25D366; }
.jt-ct-channel--call:hover { border-color: var(--ip-accent); }
.jt-ct-channel--mail:hover { border-color: #4a6cf7; }
.jt-ct-ch-body { flex: 1; min-width: 0; }
.jt-ct-ch-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ip-ink);
  margin: 0 0 2px;
}
.jt-ct-ch-body p {
  font-size: 13px;
  color: var(--ip-ink2);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jt-ct-ch-badge {
  display: inline-block;
  font-size: 11px;
  color: #6b7280;
  background: var(--ip-bg);
  border-radius: 99px;
  padding: 2px 9px;
}
.jt-ct-ch-arrow {
  color: var(--ip-border);
  font-size: 12px;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.jt-ct-channel:hover .jt-ct-ch-arrow {
  color: var(--ip-ink2);
  transform: translateX(3px);
}

/* ── Trust Badges ── */
.jt-ct-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.jt-ct-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: var(--ip-bg);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--ip-ink);
  font-weight: 500;
  line-height: 1.4;
}
.jt-ct-trust-item i {
  color: var(--ip-accent);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── Opening Hours ── */
.jt-ct-hours {
  background: linear-gradient(135deg, #1C2B4A 0%, #16223C 100%);
  border-radius: 14px;
  padding: 22px 22px 20px;
}
.jt-ct-hours h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.jt-ct-hours h4 i { color: var(--ip-accent); }
.jt-ct-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jt-ct-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.jt-ct-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.jt-ct-hours li span {
  color: #fff;
  font-weight: 600;
}

/* ── Icon Box FA icon size (replaces SVG) ── */
.contact-info-item .icon-box i { font-size: 17px; }

/* ── Contact page client scroller label ── */
.jt-ct-clients-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ip-ink2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .jt-ct-stat { padding: 18px 24px; }
}
@media (max-width: 767px) {
  .jt-ct-stats-row { gap: 0; }
  .jt-ct-stat { padding: 16px 20px; flex: 1 1 50%; }
  .jt-ct-stat-divider { display: none; }
  .jt-ct-form-card { padding: 24px 20px 20px; }
  .jt-ct-trust { grid-template-columns: 1fr; }
  .jt-ct-submit-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .jt-ct-ch-body p { font-size: 12px; }
}

/* ============================================================
   FAQ PAGE — jt-faq-*
   ============================================================ */
.jt-faq-group { margin-bottom: 36px; }

.jt-faq-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ip-accent);
  background: rgba(245,121,32,.08);
  border-radius: 99px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.jt-faq-item {
  border: 1px solid var(--ip-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.jt-faq-item.open,
.jt-faq-item:hover { box-shadow: var(--ip-shadow); }

.jt-faq-q {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ip-ink);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.jt-faq-q i {
  font-size: 12px;
  color: var(--ip-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.jt-faq-item.open .jt-faq-q { color: var(--ip-accent); background: rgba(245,121,32,.04); }
.jt-faq-item.open .jt-faq-q i { transform: rotate(180deg); }

.jt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fff;
}
.jt-faq-a p,
.jt-faq-a ul {
  margin: 0;
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--ip-ink2);
  line-height: 1.75;
}
.jt-faq-a ul {
  padding-left: 38px;
  padding-right: 22px;
}
.jt-faq-a p + p { padding-top: 0; margin-top: -8px; }
.jt-faq-a a { color: var(--ip-accent); font-weight: 600; }
.jt-faq-a a:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .jt-faq-q { padding: 15px 16px; font-size: 0.9rem; }
  .jt-faq-a p, .jt-faq-a ul { padding-left: 16px; padding-right: 16px; font-size: 14px; }
}
