/* ==== Core tokens & reset ==== */
:root {
  --navy: #0a2342;
  --navy-2: #1f3a67;
  --orange: #ff9f1c;
  --text: #0a2342;
  --muted: #445a73;
  --bg: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  background: var(--orange);
  color: #000;
  padding: 8px 10px;
  border-radius: 6px;
}

/* ==== Header ==== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-nav ul {
  display: flex;
  gap: 22px;
}
.site-nav a {
  font-weight: 700;
}
.site-nav a:hover {
  color: var(--orange);
}
.phone {
  color: var(--orange);
  font-weight: 800;
}

/* ==== Hero ==== */
.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  text-align: center;
  padding: 88px 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 14px;
}
.hero p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: #dbe3ec;
  font-size: 1.1rem;
}
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
  transition: 0.2s transform, 0.2s box-shadow, 0.2s background-color, 0.2s color;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.btn-secondary {
  border: 2px solid #ff9f1c;
  color: #ff9f1c;
  background: transparent;
}

.btn-secondary:hover {
  background: #ff9f1c;
  color: #fff;
}

/* ==== Services ==== */
.services {
  padding: 64px 20px;
  background: #f5f7fa;
  text-align: center;
}
.services h2 {
  color: var(--navy);
  font-size: 2rem;
  margin: 0 0 28px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 26px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.25s transform, 0.25s box-shadow;
  display: grid;
  place-items: center;
  gap: 10px;
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.service-box .ico {
  width: 40px;
  height: 40px;
  fill: var(--orange);
}
.service-box h3 {
  margin: 6px 0 2px;
  color: var(--navy);
}
.service-box p {
  color: #334;
}

/* ==== About ==== */
.about {
  background: #fff;
  padding: 64px 20px;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.about h2 {
  color: var(--navy);
  font-size: 2rem;
  margin: 0 0 12px;
}
.lede {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}
.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 18px;
}
.reasons li {
  font-weight: 700;
  color: var(--navy);
}
.about-cta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.about-media {
  display: grid;
  place-items: center;
  min-height: 240px;
}
.about-mark {
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(31, 58, 103, 0.08),
    transparent 70%
  );
}

@media (max-width: 980px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .reasons {
    grid-template-columns: 1fr;
  }
}

/* ==== Testimonials ==== */
.testimonials {
  background: #f5f7fa;
  padding: 64px 20px;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-head {
  text-align: center;
  margin-bottom: 26px;
}
.testimonials h2 {
  color: var(--navy);
  font-size: 2rem;
  margin: 0 0 10px;
}
.testimonials .sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 18px;
  line-height: 1.6;
  text-align: center;
}
.testimonials .sub::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 0;
  border-radius: 2px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.testimonial .text {
  color: #223;
  line-height: 1.6;
  margin: 0 0 10px;
}
.author .name {
  font-weight: 800;
  color: var(--navy);
}
.author .meta {
  color: #556;
  font-size: 0.92rem;
}
.testimonials-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ==== CTA Banner ==== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  text-align: center;
  padding: 56px 20px;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: 2rem;
  margin: 0 0 12px;
}
.cta-banner p {
  font-size: 1.05rem;
  margin: 0 0 24px;
  color: #dbe3ec;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==== Contact + Map ==== */
.contact {
  background: #fff;
  padding: 64px 20px;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-copy {
  text-align: center;
  margin-bottom: 22px;
}
.contact-copy h2 {
  color: var(--navy);
  font-size: 2rem;
  margin: 0 0 8px;
}
.contact-copy .lede {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact-form {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.field label {
  font-weight: 800;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ccd6e0;
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #7aa6d6;
  box-shadow: 0 0 0 3px rgba(122, 166, 214, 0.2);
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #e9eef5;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.map-note {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .row {
    grid-template-columns: 1fr;
  }
  .map-wrap iframe {
    height: 340px;
  }
}

/* ==== Footer ==== */
.site-footer {
  background: var(--navy);
  color: #dbe3ec;
  padding: 50px 20px 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin: 0 0 12px;
}
.footer-col address {
  font-style: normal;
  line-height: 1.6;
  margin: 0 0 12px;
}
.footer-phone {
  color: var(--orange);
  font-weight: 800;
}
.footer-phone:hover {
  color: #e68900;
}
.license {
  font-size: 0.9rem;
  color: #b7c4d4;
}
.footer-links li,
.footer-hours li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #dbe3ec;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-hours span {
  font-weight: 700;
  color: #fff;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.soc {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1f3a67;
  color: #fff;
}
.soc:hover {
  background: var(--orange);
}
.soc svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #98a8ba;
}

/* ==== Sticky mobile call button ==== */
.call-sticky {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--orange);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
@media (min-width: 721px) {
  .call-sticky {
    display: none;
  }
}

/* ==== Responsive header tweak ==== */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    justify-content: flex-start;
    width: 100%;
  }
  .site-nav ul {
    gap: 14px;
    flex-wrap: wrap;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffcc80;
  outline-offset: 2px;
}
/* Hero badge */
.badge {
  display: inline-block;
  background: #ffcc80;
  color: #0a2342;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Projects */
.projects {
  background: #fff;
  padding: 64px 20px;
}
.projects-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.projects h2 {
  color: var(--navy);
  font-size: 2rem;
  margin: 0 0 8px;
  text-align: center;
}
.projects .sub {
  color: var(--muted);
  text-align: center;
  margin: 0 0 20px;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.proj-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.proj-thumb {
  height: 140px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}
.proj-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
}
.proj-card .meta {
  color: #556;
  font-size: 0.92rem;
  margin: 0 0 8px;
}
.bullets {
  margin: 0;
  padding-left: 18px;
}
.bullets li {
  list-style: disc;
  margin: 4px 0;
}

/* FAQ */
.faq {
  background: #f5f7fa;
  padding: 64px 20px;
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq h2 {
  color: var(--navy);
  font-size: 2rem;
  margin: 0 0 12px;
  text-align: center;
}
.faq-grid {
  display: grid;
  gap: 12px;
}
.faq details {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}
.faq details p {
  margin: 8px 0 0;
  color: #223;
}

/* Sticky call button already exists; no change needed to CSS */

.hero-trust{
  margin:8px 0 0;
  text-align:center;
  font-weight:800;
  letter-spacing:.2px;
  color:#223;              /* safe, high-contrast */
  opacity:.9;
  padding: 20px;
}
@media (max-width:560px){
  .hero-trust{ font-size:.95rem; }
}
