:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-soft: #eef3f7;
  --ink: #16202a;
  --ink-soft: #4b5a68;
  --line: rgba(22, 32, 42, 0.10);

  --dark: #142433;
  --dark-soft: #1e3347;

  --blue: #1a4f73;
  --blue-deep: #0f2f45;
  --blue-soft: #e7f1f7;

  --gold: #e0a800;
  --gold-soft: #f6edd7;

  --shadow: 0 16px 40px rgba(20, 36, 51, 0.08);
  --shadow-strong: 0 24px 60px rgba(20, 36, 51, 0.16);

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;

  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  background: var(--blue-deep);
  color: #fff;
  font-size: 14px;
}

.top-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
  padding: 10px 0;
}

.site-header {
  background: linear-gradient(180deg, var(--dark), var(--dark-soft));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand-name {
  font-size: 28px;
  font-weight: 800;
}

.brand-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 14px;
}

.hero {
  padding: 68px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(145deg, var(--blue-deep), var(--blue));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-strong);
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.eyebrow-dark {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero h1,
.section-head h2,
.panel-card h2,
.emergency-card h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 18px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-note {
  margin-top: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e0b24a);
  color: #17222d;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.30);
}

.btn-full {
  width: 100%;
}

.panel-card,
.service-card,
.trust-card,
.area-card,
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel .panel-card {
  height: 100%;
  padding: 28px;
}

.panel-kicker,
.label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.detail-list {
  padding-left: 18px;
  margin: 18px 0 22px;
}

.detail-list li {
  margin-bottom: 10px;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--surface-soft);
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  padding: 24px;
}

.trust-grid,
.area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card,
.area-card {
  padding: 22px;
  font-weight: 700;
}

.emergency-card {
  background: linear-gradient(145deg, var(--dark), var(--blue-deep));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.contact-card {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
  background: linear-gradient(145deg, var(--dark), var(--dark-soft));
  color: #fff;
}

.contact-detail {
  margin-bottom: 16px;
}

.contact-detail strong {
  display: block;
  margin-top: 4px;
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-note {
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
  text-align: right;
}

@media (max-width: 900px) {
  .header-inner,
  .hero-grid,
  .contact-card,
  .emergency-card,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid,
  .trust-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .footer-note {
    text-align: left;
  }
}

/* ==================================================
   Visual polish pass
   - stronger phone emphasis
   - cleaner nav/header polish
   - better card presentation
   ================================================== */

.top-strip strong {
  color: #ffffff;
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
  color: #ffffff;
}

.top-strip a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-nav a {
  padding: 8px 0;
  position: relative;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #e5c06a);
  transition: width 0.22s ease;
}

.top-nav a:hover::after {
  width: 100%;
}

.panel-card,
.service-card,
.trust-card,
.area-card,
.contact-card {
  border: 1px solid rgba(18, 61, 89, 0.08);
}

.service-card,
.trust-card,
.area-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover,
.trust-card:hover,
.area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(20, 36, 51, 0.12);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--blue-deep);
}

.trust-card,
.area-card {
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.hero-panel .panel-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-note {
  line-height: 1.5;
}

@media (max-width: 900px) {
  .top-strip-inner {
    justify-content: flex-start;
  }

  .top-strip a {
    margin-left: 4px;
  }
}


/* STICKY CALL BAR */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--blue-deep);
  padding: 10px;
  z-index: 9999;
  display: none;
}

.sticky-call-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), #e0b24a);
  color: #17222d;
  font-weight: 800;
  padding: 14px;
  border-radius: 999px;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  .sticky-call-bar {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }
}


/* CONTACT FORM */
.contact-form {
  max-width: 600px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-form button {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* HEADER CALL BUTTON */
.nav-call-btn {
  background: linear-gradient(135deg, var(--gold), #e0b24a);
  color: #17222d;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .nav-call-btn {
    width: 100%;
    text-align: center;
  }
}


/* HERO TRUST BAR */
.trust-strip-section {
  padding-top: 10px;
  padding-bottom: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip-item {
  background: #ffffff;
  border: 1px solid rgba(18, 61, 89, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--blue-deep);
}

@media (max-width: 900px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}


/* WORK SECTION */
.work-section {
  background: var(--surface-soft);
}


/* HEADER LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .brand-logo {
    width: 56px;
    height: 56px;
  }
}
