/* Base link reset */
a {
  color: #4a4a4a;          /* subtle dark grey, matches text */
  text-decoration: none;    /* remove underline */
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover,
a:focus {
  color: #0077cc;           /* accent color on hover */
  text-decoration: underline; /* subtle hover underline */
}

/* Internal links lists (like "Other Areas") */
.link-grid, .link-list {
  list-style: none;          /* remove bullets if desired */
  padding: 0;
  margin: 0;
}

.link-grid li, .link-list li {
  margin-bottom: 8px;        /* spacing between items */
}

.link-grid li a, .link-list li a {
  display: inline-block;     /* makes hover underline cleaner */
  padding: 2px 0;            /* small padding for clickability */
}
/* =========================
   ROOT VARIABLES
   ========================= */

:root {
  --primary: #0f172a;
  --text: #0f172a;
  --muted: #475569;

  --bg: #ffffff;
  --bg-soft: #f8fafc;

  --accent: #c19a6b;

  --border: #e2e8f0;

  --container: 1120px;

  --radius: 8px;
  --transition: 0.25s ease;
}

/* =========================
   RESET
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   LAYOUT
   ========================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  padding: 80px 0;
  background: var(--bg-soft);
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  max-width: 60ch;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: inline-block;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: 0.3s ease;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header nav a {
  text-decoration: none;       /* remove underlines */
  color: white;              /* inherit header text color */
  transition: color 0.3s ease; /* smooth hover */
}

.brand {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

a.brand {
    text-decoration: none;
}

nav {
  display: flex;
  gap: 26px;
}

nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SCROLLED STATE */

.site-header.scrolled {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.site-header.scrolled .brand {
  color: var(--primary);
  text-shadow: none;
}

.site-header.scrolled nav a {
  color: var(--text);
}

.site-header.scrolled nav a::after {
  background: var(--primary);
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  height: 92vh;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px;
  transform: translateX(-60px);
}

.hero p {
  color: rgba(255,255,255,0.9);
}

.hero .eyebrow {
  color: rgba(255,255,255,0.8);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.9);
}

.hero .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.75);
}

/* =========================
   BUTTONS
   ========================= */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* =========================
   GRID
   ========================= */

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* =========================
   CARDS
   ========================= */

.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
}

/* =========================
   SERVICES
   ========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.service-card img {
  height: 220px;
  object-fit: cover;
}

/* =========================
   INTERNAL LINKS
   ========================= */

.internal-links-section {
  background: var(--bg-soft);
  padding: 72px 0;
}

.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.internal-links-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.internal-links-card a {
  color: #1a1a1a;               /* subtle dark color */
  text-decoration: none;        /* remove underline */
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.internal-links-card a:hover,
.internal-links-card a:focus {
  color: #0077cc;               /* accent color on hover */
  text-decoration: none;   /* subtle hover underline */
}

.internal-links-card li a::after {
  content: " →";          /* small arrow after link text */
  font-weight: bold;
  margin-left: 3px;
  transition: margin-left 0.3s ease;
}

.internal-links-card li a:hover::after {
  margin-left: 6px;       /* arrow moves slightly on hover */
}
/* =========================
   FAQ
   ========================= */

.faq {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* =========================
   CONTACT
   ========================= */

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 20px;
}

.footer-content {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-areas {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   FOOTER RESTORE
   ========================= */

.footer-brand {
  font-weight: 700;
  white-space: nowrap;
}

.footer-column {
  min-width: 140px;
}

.footer-column h4 {
  margin: 0 0 8px;
  font-size: 13px;
  opacity: 0.75;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #fff;
}

.site-footer .social-icons {
  justify-content: flex-end;
}

.site-footer .social-icons svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

@media (max-width: 900px) {
  .footer-areas {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer .social-icons {
    justify-content: center;
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT SECTION RESTORE
   ========================= */

.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}

.contact-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent);
}

.areas-covered {
  font-size: 0.95rem;
  color: var(--muted);
}

.areas-covered a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT SECTION (FINAL)
   ========================= */

.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

/* LEFT PANEL */
.contact-intro {
  background: #0f172a;
  color: #fff;
  border-radius: 16px;
  padding: 32px;
}

.contact-intro h2,
.contact-intro p,
.contact-intro .eyebrow {
  color: #fff;
}

/* RIGHT PANEL GRID */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* CARDS */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 10px;
}

.contact-card a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent);
}

/* TABLET */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TRUE HERO CENTERING
   ========================= */

.hero {
  position: relative;
  min-height: 85vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

/* TOP (breadcrumbs) */
.hero-top {
  position: absolute;
  top: 80px;   /* adjust depending on header height */
  left: 20px;
  width: 100%;
  text-align: center;
  padding-left: 40px;
}

/* background stays as-is */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -45%); /* slightly above centre */

  width: min(90%, 640px);
  text-align: center;

  margin: 0;        /* remove auto margins */
  padding: 20px;
  color: #fff;
}

.breadcrumbs {
  font-size: 0.9rem;
  margin: 8px 0 8px;
  color: rgb(255,165,0);
}

.breadcrumbs a {
  color: rgb(255,165,0);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.section-intro {
    max-width: 700px;
    margin: 0 0 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    display: block;
    padding: 2rem;
    background: #fff;
    border: 1px solid #dfe3ea;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all .2s ease;
    
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}