:root {
  --primary: #0b2a4a;
  --primary-light: #123a6a;
  --accent: #f5b301;
  --bg-light: #f5f7fb;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.12);
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-pill: 999px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
}

body {
  line-height: 1.6;
}

/* Layout */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Navbar */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.35);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* space between logo and text */
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 0.2rem;
  font-family: var(--font-serif);
  font-weight: 600;        /* optional but looks great */
  letter-spacing: 0.5px;   /* optional for a premium feel */
}


.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hero / header sections */

.section {
  padding: 3.5rem 1.5rem;
}

.section-alt {
  background: var(--bg-light);
}

.section-narrow {
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1,
.hero-text h2 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.hero-text h1 {
  font-size: 2rem;
}

.hero-text h2 {
  font-size: 1.7rem;
}

.hero-text p.lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 42, 74, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1f2933;
  box-shadow: 0 8px 18px rgba(245, 179, 1, 0.35);
}

.btn-primary:hover {
  background: #f7c53a;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(11, 42, 74, 0.25);
}

.btn-outline:hover {
  background: rgba(11, 42, 74, 0.04);
}

.hero-contact-inline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-contact-inline strong {
  color: var(--primary);
}

.hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}

.hero-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section headings */

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0 0 0.4rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.04);
}
/* Remove link styling from clickable service tiles */
.service-card {
  text-decoration: none;
  color: inherit;
  display: block; /* ensures the whole tile is clickable */
}

.service-card:hover {
  text-decoration: none;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  max-width: 80px;
  max-height: 80px;
}

.service-title {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-card ul li + li {
  margin-top: 0.25rem;
}

/* Two-column content blocks */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.card ul li + li {
  margin-top: 0.35rem;
}

/* Bullet styles */

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 0.85rem;
}

/* Tag list */

.tag-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tag-list li {
  margin-bottom: 0.4rem;
}

/* Contact / forms */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(11, 42, 74, 0.15);
}

/* Info blocks */

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h3 {
  margin: 0 0 0.4rem;
  color: var(--primary);
  font-size: 1rem;
}

.info-block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-main);
}

/* CTA strip */

.cta-strip {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-strip p {
  margin: 0;
  font-size: 0.9rem;
}

.cta-strip strong {
  font-weight: 600;
}

/* Footer */

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
}

/* Utilities */

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Responsive */

@media (max-width: 900px) {
  .hero,
  .two-column,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
} /* FIXED MISSING BRACE */


.brand-logo {
  height: 100px;
  width: auto !important;
  object-fit: contain;
  display: block;
}

.navbar {
  align-items: center !important;
}

@media (max-width: 600px) {
  .section {
    padding: 2.5rem 1.1rem;
  }

  .hero-text h1,
  .hero-text h2 {
    font-size: 1.6rem;
  }
}
.services-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-home-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}



.service-home-item .service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.75rem;
}

.service-home-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .nav-links a {
    padding: 0.4rem 0;
    border: none; /* removes leftover mobile menu borders */
  }
}

.brand {
  text-decoration: none;
  color: inherit;
}
.brand,
.brand:link,
.brand:visited,
.brand:hover,
.brand:active {
  color: inherit !important;
  text-decoration: none !important;
}
