:root {
  --primary: #ffcb05;
  --secondary: #1f2933;
  --text: #0f1720;
  --muted: #667085;
  --bg: #ffffff;
  --light: #f8fafc;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.nav-links a,
.btn,
.stat-label {
  font-family: Oswald, Arial, sans-serif;
  letter-spacing: 0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* About section image styling for a cleaner, professional look */
.about-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom-color: var(--border);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 0.88rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #344054;
}

.nav-links a.active,
.nav-links a:hover {
  color: #111827;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 20px;
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 12px 0;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
}

.page-hero {
  color: #ffffff;
  min-height: 74vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.5));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero-subtitle {
  max-width: 650px;
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

section {
  padding: 76px 0;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 24px;
}

.card h3 {
  margin-top: 0;
  text-transform: uppercase;
}

.section-dark {
  background: var(--secondary);
  color: #ffffff;
}

.section-light {
  background: var(--light);
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Make action buttons within service cards sit at the bottom for consistent alignment */
.service-card .btn {
  margin-top: auto;
}

.service-card p {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 12px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
}

.stat-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #d1d5db;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 24px;
}

.map-embed {
  margin-top: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #475467;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #f9fafb;
  padding: 10px 12px;
  font-family: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  font-size: 0.88rem;
  margin-top: 10px;
}

.ok {
  color: #137333;
}

.error {
  color: #b42318;
}

.page-header {
  color: #ffffff;
  min-height: 48vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
}

/* Services-specific header styling for a professional, high-contrast look */
.page-header.services-header {
  background-position: center center;
  min-height: 52vh;
}

.page-header.services-header::before {
  background: linear-gradient(180deg, rgba(8,10,16,0.65) 0%, rgba(8,10,16,0.48) 50%, rgba(8,10,16,0.65) 100%);
}

/* Read More button color on the services listing page */
.page-header.services-header + section .grid-3 .service-card .btn {
  background: var(--primary);
  color: var(--secondary);
  border-color: transparent;
}

.page-header .container h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

/* Contact-specific header styling for a clean, professional hero */
.page-header.contact-header {
  /* show the top of the contact image so heads are visible */
  background-position: center 20%;
  min-height: 44vh;
  background-repeat: no-repeat;
}

.page-header.contact-header::before {
  background: linear-gradient(180deg, rgba(2,6,23,0.5) 0%, rgba(2,6,23,0.35) 50%);
}

.page-header.contact-header .container p {
  color: rgba(255,255,255,0.9);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.benefit {
  background: #f9fafb;
  border: 1px solid var(--border);
  padding: 10px;
  font-size: 0.92rem;
}

.site-footer {
  background: var(--secondary);
  color: #ffffff;
  padding: 48px 0 24px;
  box-shadow: 0 -6px 24px rgba(2,6,23,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
}

.footer-logo {
  width: 56px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-grid ul li {
  margin-bottom: 8px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-bottom {
    text-align: left;
  }
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.site-footer p,
.site-footer li {
  color: #d1d5db;
  line-height: 1.6;
  margin: 0 0 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: #9ca3af;
  text-align: center;
}

.hidden {
  display: none !important;
}

@media (max-width: 960px) {
  .grid-3,
  .stats,
  .footer-grid,
  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .grid-2,
  .grid-3,
  .stats,
  .footer-grid,
  .detail-layout,
  .benefits,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 58px 0;
  }
}
