/* Contact + Blog pages — shared brand navy/gold */
.ct-page, .bl-page {
  --navy: #0b1f3a;
  --dark: #08162d;
  --gold: #d4af37;
  --cream: #f7f8fb;
  --muted: #5f6b7c;
  --line: #e6ebf2;
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: #152238;
}

.ct-wrap, .bl-wrap { width: min(1180px, 92%); margin: 0 auto; }

.ct-hero, .bl-hero {
  position: relative;
  min-height: 56svh;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 80px;
  color: #fff;
  isolation: isolate;
}

/* Contact hero thinner */
.ct-hero {
  min-height: 34svh;
  padding: 88px 0 36px;
}

/* blog hero has no floating USP bar under it, so it needs less bottom space */
.bl-hero { padding-bottom: 48px; }

.ct-hero__bg, .bl-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,22,45,.35), rgba(8,22,45,.88)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2000&q=80") center/cover;
}

.ct-hero__eyebrow, .bl-hero__eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: 15px;
}

.ct-hero h1, .bl-hero h1 {
  margin: 0 0 10px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  max-width: 16ch;
  line-height: 1.15;
}

.ct-hero h1 span, .bl-hero h1 span { color: var(--gold); }

.ct-hero p, .bl-hero p {
  margin: 0;
  max-width: 52ch;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  white-space: pre-line;
}

.ct-trust {
  margin-top: -28px;
  position: relative;
  z-index: 3;
  padding: 0 0 4px;
  background: transparent;
  color: var(--navy);
}

.ct-trust__row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 8px !important;
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 40px rgba(8, 22, 45, 0.12) !important;
  padding: 18px 16px !important;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #0b1f3a !important;
}

.ct-trust__row > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  line-height: 1.3;
}

.ct-trust__row i {
  color: #d4af37 !important;
  display: block;
  margin: 0 !important;
  font-size: 16px !important;
}

.ct-section, .bl-section { padding: 32px 0; }
.ct-page .ct-section { padding: 20px 0; }

.ct-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 14px;
  align-items: start;
}

.ct-card, .bl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(8,22,45,.05);
}
.ct-page .ct-card { padding: 12px 14px; }

.ct-card h2, .bl-card h2, .ct-section h2, .bl-section h2 {
  margin: 0 0 6px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-card h2 > i {
  color: var(--gold);
  font-size: 1.05em;
  line-height: 1;
}

.ct-card > p, .bl-sub {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12.5px;
}

.ct-form { display: grid; gap: 10px; }

.ct-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.ct-field {
  --ct-icon-slot: 42px;
  --ct-field-h: 44px;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.ct-field__icon {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: var(--ct-icon-slot) !important;
  height: var(--ct-field-h) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
  z-index: 3 !important;
  box-sizing: border-box !important;
}

.ct-field__icon i,
.ct-field__icon .fa-solid {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #d4af37 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  transform: none !important;
  text-align: center !important;
}

.ct-field--area .ct-field__icon {
  height: var(--ct-field-h) !important;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  display: block;
  width: 100%;
  min-height: var(--ct-field-h);
  height: var(--ct-field-h);
  margin: 0;
  border: 1px solid #d7deea;
  border-radius: 9px;
  padding: 0 14px 0 var(--ct-icon-slot);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #fff;
  line-height: 1.3;
  box-sizing: border-box;
  color: #152238;
  vertical-align: middle;
}

.ct-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.ct-field textarea {
  min-height: 110px;
  height: auto;
  line-height: 1.45;
  padding: 13px 14px 13px var(--ct-icon-slot);
  resize: vertical;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}

/* Kill any leftover absolute icon rules from older CSS */
.ct-field > i {
  display: none !important;
}

.ct-submit {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 13px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.ct-msg {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}
.ct-msg.ok { display: block; background: #e8f8ef; color: #0f7a45; }
.ct-msg.err { display: block; background: #fdeeee; color: #b42318; }

.ct-touch { display: grid; gap: 10px; }

.ct-touch__sub {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 12.5px;
}

.ct-touch-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ct-touch-item .ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 13px;
}
.ct-touch-item .ico--green { background: #e8f8ef; color: #16a34a; }
.ct-touch-item .ico--wa { background: #e9f9ef; color: #25d366; }
.ct-touch-item .ico--mail { background: #eef5ff; color: #3b82f6; }
.ct-touch-item .ico--loc { background: #fdeeee; color: #dc2626; }
.ct-touch-item .ico--time { background: #fff8e8; color: #d4af37; }

.ct-touch-item h4 { margin: 0 0 1px; font-size: 12px; color: var(--muted); font-weight: 500; font-family: Poppins, sans-serif; }
.ct-touch-item p, .ct-touch-item a {
  margin: 0; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; line-height: 1.35;
}
.ct-touch-item a:hover { color: var(--gold); }

.ct-callout {
  margin-top: 6px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

.ct-callout h3 { margin: 0 0 4px; color: #fff; font-family: "Poppins", "Segoe UI", sans-serif; font-size: 1.05rem; }
.ct-callout p { margin: 0 0 8px; font-size: 12.5px; color: rgba(255,255,255,.85); }

/* Business credentials */
.ct-cred-section { padding-top: 4px; padding-bottom: 16px; }
.ct-cred-head {
  margin-bottom: 10px;
}
.ct-cred-head h2 {
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
}
.ct-cred-head h2 i { color: #2563eb; }
.ct-cred-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.ct-cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ct-cred-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(8, 22, 45, 0.04);
  text-align: left;
}
.ct-cred-card h3 {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}
.ct-cred-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ct-cred-card li {
  display: grid;
  gap: 1px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  justify-items: start;
}
.ct-cred-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.ct-cred-card li span {
  font-size: 11.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.ct-cred-card li span i { color: var(--gold); }
.ct-cred-card li strong {
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}
.ct-cred-actions {
  display: none !important;
}
.ct-cred-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #111 !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
}
.ct-cred-btn:hover { filter: brightness(1.05); }

@media (max-width: 900px) {
  .ct-cred-grid { grid-template-columns: 1fr; }
}

.ct-stats {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}

.ct-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}

.ct-stats__row strong {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
}

.ct-stats__row span { font-size: 12px; color: rgba(255,255,255,.85); }

.ct-map-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.ct-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
}

.ct-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ct-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.ct-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  list-style: none;
}
.ct-faq summary::-webkit-details-marker { display: none; }
.ct-faq p { margin: 10px 0 0; font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Blog grid */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bl-post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(8,22,45,.06);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}

.bl-post:hover { transform: translateY(-4px); }

.bl-post__media { height: 190px; background: #ddd; }
.bl-post__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bl-post__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.bl-tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212,175,55,.15);
  color: #8a6d12;
  font-size: 11px;
  font-weight: 700;
}

.bl-post h3 {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--navy);
}

.bl-post p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-post__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.bl-post__meta a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.bl-post__meta a:hover { color: var(--gold); }

.bl-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.bl-article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.bl-article__cover { height: 360px; }
.bl-article__cover img { width: 100%; height: 100%; object-fit: cover; }

.bl-article__content { padding: 28px; }

.bl-article__content h1 {
  margin: 8px 0 12px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
}

.bl-article__content .body {
  font-size: 15px;
  line-height: 1.8;
  color: #334;
  white-space: pre-wrap;
}

.bl-side .bl-card { margin-bottom: 14px; }
.bl-side a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}
.bl-side a:last-child { border-bottom: 0; }
.bl-side a:hover { color: var(--gold); }

.bl-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .ct-grid, .ct-map-grid, .bl-detail, .ct-faq { grid-template-columns: 1fr; }
  .ct-stats__row, .bl-grid { grid-template-columns: 1fr 1fr; }
  .ct-trust__row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 10px !important;
  }
  .ct-trust__row > div { flex: unset !important; }
  .ct-form .row { grid-template-columns: 1fr; }
  .bl-article__cover { height: 220px; }
  .ct-section, .bl-section { padding: 24px 0 !important; }
  .ct-hero, .bl-hero { padding: 96px 0 24px !important; }
}

@media (max-width: 600px) {
  .ct-stats__row, .bl-grid { grid-template-columns: 1fr; gap: 12px; }
  .ct-trust__row { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .ct-section, .bl-section { padding: 20px 0 !important; }
}
