:root {
  --ik-coral: #ff4d4d;
  --ik-mustard: #ffcc33;
  --ik-black: #0d0d0d;
  --ik-grey: #ebeae6;
  --ik-grey-soft: #f2f1ed;
  --ik-cream: #f7f6f2;
  --ik-white: #ffffff;
  --ik-radius: 1.25rem;
  --ik-radius-xl: 2.25rem;
  --ik-nav-h: 76px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ik-black);
  background-color: var(--ik-cream);
  padding-top: var(--ik-nav-h);
}

section {
  scroll-margin-top: calc(var(--ik-nav-h) + 12px);
}

.navbar {
  min-height: var(--ik-nav-h);
  background-color: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ik-black);
}

.nav-link {
  font-weight: 500;
  color: var(--ik-black) !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--ik-coral) !important;
}

.btn-coral {
  --bs-btn-bg: var(--ik-coral);
  --bs-btn-border-color: var(--ik-coral);
  --bs-btn-hover-bg: #e84545;
  --bs-btn-hover-border-color: #e84545;
  --bs-btn-active-bg: #d63d3d;
  --bs-btn-active-border-color: #d63d3d;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 1.35rem;
}

.btn-outline-dark-pill {
  border: 2px solid var(--ik-black);
  color: var(--ik-black);
  background: var(--ik-white);
  font-weight: 600;
  border-radius: 999px;
}

.btn-outline-dark-pill:hover {
  background: var(--ik-black);
  color: #fff;
}

.text-coral {
  color: var(--ik-coral) !important;
}

.bg-coral {
  background-color: var(--ik-coral) !important;
}

.bg-mustard {
  background-color: var(--ik-mustard) !important;
}

.bg-section-grey {
  background-color: var(--ik-grey) !important;
}

.highlight-mustard {
  background: var(--ik-mustard);
  padding: 0.08em 0.28em;
  border-radius: 0.2em;
}

.hero-title {
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 36rem;
}

@media (min-width: 992px) {
  .hero-lead {
    font-size: 1.05rem;
  }
}

.hero-image {
  border-radius: var(--ik-radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  max-height: min(280px, 48vw);
  object-fit: cover;
}

@media (min-width: 992px) {
  .hero-image img {
    max-height: min(320px, 36vw);
  }
}

.stat-tile {
  border-radius: var(--ik-radius);
  padding: 1.35rem 1.25rem;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-tile .num {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.1;
}

.stat-tile-muted {
  background: var(--ik-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card-ik {
  background: var(--ik-white);
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: var(--ik-radius);
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card-ik:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.services-grid .service-card-ik {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.icon-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ik-mustard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ik-black);
}

.filter-pill {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border: 2px solid var(--ik-black);
  background: transparent;
  color: var(--ik-black);
}

.filter-pill:hover {
  border-color: var(--ik-coral);
  color: var(--ik-coral);
}

.filter-pill.is-active {
  background: var(--ik-coral);
  border-color: var(--ik-coral);
  color: #fff;
}

.filter-pill--sm {
  padding: 0.28rem 0.75rem;
  font-size: 0.8125rem;
  border-width: 1.5px;
}

.work-section__title {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.2;
}

.portfolio-tile {
  border-radius: var(--ik-radius);
  overflow: hidden;
  background: var(--ik-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.portfolio-tile img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.portfolio-tile--compact {
  border-radius: 1rem;
}

.portfolio-tile--compact img {
  aspect-ratio: 16 / 9;
  max-height: clamp(140px, 28vw, 220px);
}

.portfolio-tile__meta {
  padding: 0.65rem 0.85rem 0.75rem;
}

.portfolio-tile__meta .h6 {
  font-size: 0.95rem;
}

.portfolio-tile__meta .small {
  font-size: 0.75rem;
}

.expertise-nav .list-group-item {
  border: none;
  border-radius: var(--ik-radius) !important;
  margin-bottom: 0.5rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  cursor: pointer;
  background: var(--ik-white);
  border: 1px solid transparent;
}

.expertise-nav .list-group-item:hover {
  border-color: rgba(0, 0, 0, 0.08);
}

.expertise-nav .list-group-item.active {
  background: var(--ik-black);
  color: #fff;
}

.expertise-panel {
  background: var(--ik-white);
  border-radius: var(--ik-radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.75rem 1.75rem 1.5rem;
  min-height: 320px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.expertise-panel .panel-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 77, 77, 0.12);
  color: var(--ik-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.expertise-panel ul li::marker {
  color: var(--ik-coral);
}

.profile-card {
  border-radius: var(--ik-radius-xl);
  background: var(--ik-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.profile-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--ik-mustard);
}

.job-card {
  border-radius: var(--ik-radius);
  background: var(--ik-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.job-card img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.contact-band {
  border-radius: var(--ik-radius-xl);
  overflow: hidden;
  background: var(--ik-coral);
  color: #fff;
}

.contact-band--compact {
  border-radius: 1.5rem;
  max-width: 960px;
}

.contact-band__col {
  padding: 1.25rem 1.35rem;
}

@media (min-width: 992px) {
  .contact-band__col {
    padding: 1.5rem 1.75rem;
  }

  .contact-band__col--form {
    padding: 1.35rem 1.35rem 1.35rem 0.5rem;
  }
}

.contact-band__title {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  line-height: 1.2;
}

.contact-band__lead {
  font-size: 0.875rem;
  line-height: 1.45;
  max-width: 26rem;
}

.contact-band a {
  color: #fff;
}

.form-card {
  border-radius: var(--ik-radius-xl);
  /* background: var(--ik-white); */
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); */
}

.form-card--compact {
  border-radius: 1.25rem;
  padding: 1.1rem 1.2rem;
  /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1); */
}

@media (min-width: 768px) {
  .form-card--compact {
    /* padding: 1.25rem 1.35rem; */
  }
}

.social-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

.social-round:hover {
  background: #fff;
  color: var(--ik-coral);
}

.social-round--sm {
  width: 34px;
  height: 34px;
  font-size: 0.9rem;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ik-grey-soft);
  color: var(--ik-black);
  text-decoration: none;
}

.footer-social:hover {
  background: var(--ik-coral);
  color: #fff;
}

.footer-blurb {
  max-width: 34rem;
}

@media (min-width: 992px) {
  .footer-quick-links {
    padding-top: 0.15rem;
  }
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1030;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--ik-black);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--ik-coral);
}

/* Floating WhatsApp (bottom-left; back-to-top stays bottom-right) */
.float-whatsapp {
  position: fixed;
  left: 1rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  line-height: 1;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.float-whatsapp:hover {
  color: #fff !important;
  transform: scale(1.06);
  filter: brightness(1.05);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.float-whatsapp:focus-visible {
  outline: 3px solid var(--ik-mustard);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .expertise-panel {
    min-height: 0;
  }
}








/* WPForms Form ID [39] Get a Quote Custom Styling */
#wpforms-39 {
  --wpf-quote-coral: #e75a4d;
  --wpf-quote-coral-hover: #d84b3f;
  --wpf-quote-ink: #1b1d22;
  --wpf-quote-border: #dfe3e8;
  --wpf-quote-card: #f9fafb;
  --wpf-quote-input-bg: #ffffff;
  /* padding: clamp(1rem, 2.5vw, 2rem); */
  border-radius: 1.75rem;
  background: linear-gradient(145deg, #e96255 0%, var(--wpf-quote-coral) 100%);
  box-shadow: 0 20px 45px rgba(231, 90, 77, 0.24);
}

#wpforms-39 .wpforms-form {
  margin: 0;
  background: var(--wpf-quote-card);
  border-radius: 1.45rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

#wpforms-39 .wpforms-title {
  margin-bottom: 0.35rem;
  color: var(--wpf-quote-ink);
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

#wpforms-39 .wpforms-description {
  margin-bottom: 1.1rem;
  color: #4b5563;
  font-size: 0.96rem;
}

#wpforms-39 .wpforms-field {
  padding: 0 0 0.9rem;
}

#wpforms-39 .wpforms-field-label {
  margin-bottom: 0.45rem;
  color: #2d3748;
  font-size: 0.92rem;
  font-weight: 600;
}

#wpforms-39 input[type="text"],
#wpforms-39 input[type="email"],
#wpforms-39 input[type="url"],
#wpforms-39 input[type="tel"],
#wpforms-39 input[type="number"],
#wpforms-39 select,
#wpforms-39 textarea {
  min-height: 52px;
  border: 1px solid var(--wpf-quote-border);
  border-radius: 0.95rem;
  background-color: var(--wpf-quote-input-bg);
  color: #111827;
  font-size: 0.98rem;
  padding: 0.72rem 0.9rem;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

#wpforms-39 textarea {
  min-height: 130px;
  border-radius: 1.05rem;
  resize: vertical;
}

#wpforms-39 input:focus,
#wpforms-39 select:focus,
#wpforms-39 textarea:focus {
  border-color: #f08d85;
  box-shadow: 0 0 0 4px rgba(231, 90, 77, 0.16);
  outline: none;
  background-color: #fff;
}

#wpforms-39 .wpforms-submit-container {
  margin-top: 0.4rem;
}

#wpforms-39 button[type="submit"],
#wpforms-39 input[type="submit"] {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--wpf-quote-coral);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 12px 26px rgba(231, 90, 77, 0.32);
}

#wpforms-39 button[type="submit"]:hover,
#wpforms-39 input[type="submit"]:hover {
  background: var(--wpf-quote-coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(216, 75, 63, 0.34);
}

#wpforms-39 button[type="submit"]:focus-visible,
#wpforms-39 input[type="submit"]:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

#wpforms-39 .wpforms-error {
  font-size: 0.84rem;
}

@media (max-width: 991.98px) {
  #wpforms-39 {
    border-radius: 1.35rem;
    padding: 0.9rem;
  }

  #wpforms-39 .wpforms-form {
    border-radius: 1.15rem;
    padding: 1rem;
  }
}