/* Swift Host — design polish (meadow theme + blue accents) */

:root {
  --sh-green: #0f962c;
  --sh-green-dark: #0a7020;
  --sh-blue: #0f5196;
  --sh-blue-dark: #0a3d6e;
  --sh-blue-light: #e8f0f8;
  --sh-text: #555;
  --sh-heading: #222;
  --sh-muted: #909090;
  --sh-bg-alt: #f4f7f9;
  --sh-border: #dde4ea;
  --sh-radius: 8px;
  --sh-shadow: 0 2px 14px rgba(15,81,150,0.07);
  --sh-shadow-hover: 0 8px 28px rgba(15,81,150,0.14);
}

body { color: var(--sh-text); }
.lead { line-height: 1.75; color: var(--sh-text); }
.section-title h2, .section-title h3, h3.upper { color: var(--sh-heading); }

.search_button, .h_search_form { display: none !important; }

/* ── Shared blue icon box ── */
.sh-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--sh-blue) 0%, var(--sh-blue-dark) 100%);
  border-radius: 12px;
  color: #fff !important;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(15,81,150,0.25);
  margin-bottom: 16px;
}
.sh-icon-box-sm {
  width: 44px;
  height: 44px;
  font-size: 18px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.sh-icon-box-circle {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 20px;
}

/* ── Banners: homepage slider ── */
.sl-slide-inner {
  position: relative;
}
.sl-slide-inner:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,81,150,0.78) 0%,
    rgba(10,61,110,0.65) 45%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
}
.sl-slide-inner .slide-container {
  position: relative;
  z-index: 2;
}
.sl-slide-inner .main-title {
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
}
.sl-slide-inner blockquote p {
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  font-size: 1.15rem;
  opacity: 0.95;
}
.sl-slide-inner .btn-primary {
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  padding: 14px 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── Banners: inner page parallax headers ── */
.header-section {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.header-section:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,81,150,0.82) 0%,
    rgba(10,61,110,0.72) 50%,
    rgba(15,150,44,0.45) 100%
  );
  z-index: 0;
}
.header-section .section-shade {
  position: relative;
  z-index: 1;
  background: transparent !important;
}
.header-section .section-title h2 {
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.header-section .section-title .lead {
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.95;
}
.header-section .text-primary {
  color: #7ec8ff !important;
}

/* ── Nav ── */
.navbar-brand img { max-height: 44px; width: auto; }
.nav .sh-nav-contact > a {
  background: var(--sh-blue) !important;
  color: #fff !important;
  border-radius: var(--sh-radius);
  padding: 10px 18px !important;
  margin-top: 14px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(15,81,150,0.25);
}
.nav .sh-nav-contact > a:hover {
  background: var(--sh-blue-dark) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(15,81,150,0.35);
}
.nav .sh-nav-email > a {
  font-size: 11px !important;
  letter-spacing: 0.04em;
  opacity: 0.75;
  padding-top: 22px !important;
}
.nav .sh-nav-email > a:hover { opacity: 1; color: var(--sh-blue) !important; }
.yamm-content h6.upper { color: var(--sh-blue); letter-spacing: 0.1em; }
.dropdown-menu { border-radius: var(--sh-radius); border: 1px solid var(--sh-border); }

/* ── Live chat ── */
.sh-live-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(145deg, var(--sh-green) 0%, var(--sh-green-dark) 100%);
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(15,150,44,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sh-live-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(15,150,44,0.45);
}
.sh-live-chat a {
  display: block;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 22px;
}
.sh-live-chat a:before {
  content: '\f075';
  font-family: FontAwesome;
  margin-right: 8px;
}

/* ── Sections ── */
.sh-bg-alt { background: var(--sh-bg-alt); }
.sh-section-header { text-align: center; margin-bottom: 40px; }
.sh-section-header .lead { max-width: 640px; margin: 12px auto 0; }
.sh-section-header h3:after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--sh-blue), var(--sh-green));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── Trust bar ── */
.sh-trust-bar {
  background: linear-gradient(180deg, #fff 0%, var(--sh-bg-alt) 100%);
  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
  padding: 32px 0;
}
.sh-trust-bar .sh-trust-item { text-align: center; padding: 8px 12px; }
.sh-trust-bar .sh-trust-item .sh-icon-box-circle { margin: 0 auto 12px; }
.sh-trust-bar .sh-trust-item strong {
  display: block;
  color: var(--sh-heading);
  font-size: 15px;
  font-weight: 700;
}
.sh-trust-bar .sh-trust-item span {
  font-size: 11px;
  color: var(--sh-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Service cards ── */
.sh-service-link {
  display: block;
  padding: 28px 24px;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  text-align: center;
  min-height: 200px;
}
.sh-service-link:hover {
  border-color: var(--sh-blue);
  box-shadow: var(--sh-shadow-hover);
  transform: translateY(-3px);
  text-decoration: none;
}
.sh-service-link .sh-icon-box { margin: 0 auto 16px; }
.sh-service-link h4 {
  color: var(--sh-heading);
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.sh-service-link p { color: var(--sh-muted); font-size: 14px; margin: 0; line-height: 1.65; }
.sh-service-link .sh-arrow {
  color: var(--sh-blue);
  font-size: 12px;
  font-weight: 700;
  margin-top: 14px;
  display: inline-block;
  letter-spacing: 0.04em;
}

/* ── Checklist ── */
.sh-checklist { list-style: none; padding: 0; margin: 20px 0; }
.sh-checklist li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px solid var(--sh-border);
  line-height: 1.6;
}
.sh-checklist li:last-child { border-bottom: none; }
.sh-checklist li:before {
  content: '\f00c';
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--sh-blue-light);
  color: var(--sh-blue);
  border-radius: 50%;
  font-size: 11px;
  text-align: center;
  line-height: 22px;
}

/* ── Detail panels ── */
.sh-detail-panel {
  background: #fff;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--sh-shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  text-align: center;
}
.sh-detail-panel:hover {
  box-shadow: var(--sh-shadow-hover);
  transform: translateY(-2px);
}
.sh-detail-panel .sh-icon-box { margin: 0 auto 14px; }
.sh-detail-panel h4 {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--sh-heading);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sh-detail-panel p { color: var(--sh-muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ── FAQ ── */
.sh-faq-block {
  padding: 22px 0 22px 24px;
  border-bottom: 1px solid var(--sh-border);
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.sh-faq-block:hover {
  border-left-color: var(--sh-blue);
  background: rgba(15,81,150,0.03);
}
.sh-faq-block h4 { font-weight: 700; margin-bottom: 8px; color: var(--sh-heading); font-size: 15px; }
.sh-faq-block h4:before { content: 'Q. '; color: var(--sh-blue); font-weight: 800; }
.sh-faq-block p { margin: 0; font-size: 15px; }

/* ── CTA banner ── */
.sh-cta-band {
  background: linear-gradient(135deg, var(--sh-blue) 0%, var(--sh-blue-dark) 60%, #062847 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sh-cta-band:before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/intro-home1.jpg') center/cover;
  opacity: 0.12;
}
.sh-cta-band .container { position: relative; z-index: 1; }
.sh-cta-band h3 { color: #fff; margin-bottom: 12px; text-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.sh-cta-band .lead { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 28px; }
.sh-cta-band .btn-primary {
  background: #fff;
  color: var(--sh-blue) !important;
  border-color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.sh-cta-band .btn-primary:hover { background: var(--sh-blue-light); }
.sh-cta-band .btn-dark {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff !important;
  margin-left: 8px;
}
.sh-cta-band .btn-dark:hover { background: rgba(255,255,255,0.12); color: #fff !important; }

/* ── Emergency banner ── */
.sh-emergency-band {
  background: linear-gradient(135deg, #1a1a2e 0%, #2c2c3e 100%);
  color: #fff;
  text-align: center;
  position: relative;
}
.sh-emergency-band:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,81,150,0.2) 0%, transparent 50%, rgba(15,81,150,0.2) 100%);
}
.sh-emergency-band .container { position: relative; z-index: 1; }
.sh-emergency-band h3 { color: #fff; }
.sh-emergency-band .lead { color: rgba(255,255,255,0.85); }
.sh-emergency-band .btn-primary { margin: 4px; box-shadow: 0 3px 10px rgba(0,0,0,0.2); }

/* ── Genesis steps ── */
.sh-steps { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.sh-step { flex: 1 1 200px; text-align: center; padding: 20px 12px; }
.sh-step-num {
  width: 48px; height: 48px;
  background: linear-gradient(145deg, var(--sh-blue) 0%, var(--sh-blue-dark) 100%);
  color: #fff;
  border-radius: 50%;
  line-height: 48px;
  font-weight: 700;
  font-size: 17px;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(15,81,150,0.3);
  border: 3px solid var(--sh-blue-light);
}
.sh-step h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--sh-heading); margin-bottom: 8px;
}
.sh-step p { font-size: 13px; color: var(--sh-muted); line-height: 1.55; }

/* ── Footer ── */
#footer .widget-post a:hover { color: var(--sh-blue) !important; }
#footer .widget-address a:hover { color: var(--sh-blue) !important; }

/* ── Buttons ── */
.btn-primary { transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-lg { padding: 12px 28px; letter-spacing: 0.03em; }

#back_to_top a {
  background: var(--sh-blue);
  border-radius: var(--sh-radius);
  transition: background 0.2s;
}
#back_to_top a:hover { background: var(--sh-blue-dark); }

@media (max-width: 767px) {
  .sh-live-chat { bottom: 16px; right: 16px; }
  .sh-live-chat a { padding: 10px 16px; font-size: 12px; }
  .nav .sh-nav-contact > a { margin: 8px 0; display: inline-block; }
  .sh-trust-bar .sh-trust-item { margin-bottom: 20px; }
  .sh-cta-band .btn-dark { margin-left: 0; margin-top: 10px; }
  .sh-service-link { min-height: auto; }
}
