/* =========================================================
   Primecart — global overrides (put in assets/css/primecart.css)
   Works with Bootstrap + Landrick
========================================================= */

/* 1) BRAND COLORS (set once, everything follows) */
:root{
  --pc-primary: #1F8F8E;              /* Primecart logo color */
  --pc-primary-dark: #177a79;         /* hover/darker */
  --pc-primary-soft: rgba(31,143,142,.12);

  /* Override Bootstrap Primary */
  --bs-primary: var(--pc-primary);
  --bs-primary-rgb: 31,143,142;

  /* Optional: nicer focus ring color globally */
  --bs-focus-ring-color: rgba(31,143,142,.25);
}

/* 2) BASE TYPO / LINKS */
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{
  color: var(--pc-primary);
  text-decoration: none;
}

a:hover{
  color: var(--pc-primary-dark);
  text-decoration: none;
}

/* If theme forces blue on some links, enforce it */
.text-primary{ color: var(--pc-primary) !important; }
.bg-primary{ background-color: var(--pc-primary) !important; }
.border-primary{ border-color: var(--pc-primary) !important; }

/* 3) BUTTONS */
.btn-primary{
  background-color: var(--pc-primary) !important;
  border-color: var(--pc-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus{
  background-color: var(--pc-primary-dark) !important;
  border-color: var(--pc-primary-dark) !important;
}

.btn-outline-primary{
  color: var(--pc-primary) !important;
  border-color: var(--pc-primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus{
  background-color: var(--pc-primary) !important;
  border-color: var(--pc-primary) !important;
  color: #fff !important;
}

/* 4) FORMS / FOCUS RINGS */
.form-control:focus,
.form-select:focus{
  border-color: rgba(31,143,142,.45) !important;
  box-shadow: 0 0 0 .2rem rgba(31,143,142,.12) !important;
}

/* 5) OPTIONAL: make icons in feature cards consistent */
i.text-primary,
.fea.text-primary{
  color: var(--pc-primary) !important;
}

/* =========================================================
   CONTACT BLOCK (your section styles)
========================================================= */

/* --- Card look --- */
.pc-contact-card{ border-radius: 16px !important; }
.pc-contact-left{
  background: linear-gradient(135deg, rgba(31,143,142,.14), rgba(24,168,166,.08));
}

/* --- Icons inside fields --- */
.pc-input{ position: relative; }

.pc-ico{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #94a3b8;
  font-size: 18px;
}

.pc-ico-top{
  top: 14px;
  transform: none;
}

.pc-field{
  padding-left: 52px !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  height: 52px;
  background: #fff;
}

.pc-textarea{
  height: auto;
  min-height: 140px;
  padding-top: 14px !important;
}

.pc-field:focus{
  border-color: rgba(31,143,142,.45) !important;
  box-shadow: 0 0 0 .2rem rgba(31,143,142,.12) !important;
}

.pc-input:focus-within .pc-ico{
  color: var(--pc-primary);
}

/* Make reCAPTCHA area align better */
.g-recaptcha{
  transform-origin: 0 0;
}

/* =========================================================
   CLIENT LOGOS (optional improvement)
========================================================= */
.client-logo{
  max-height: 34px;
  width: auto;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}

.client-logo:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* =========================================================
   HERO overlay helper (optional)
========================================================= */
.bg-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35); /* adjust if needed */
  z-index: 0;
}

.bg-half-170 .container,
.bg-half-170 .row,
.bg-half-170 .card{
  position: relative;
  z-index: 1;
}