/* =========================================================
   GLOBAL BASE
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #111111;
  font-family: "Inter", sans-serif;
  padding-top: 150px; /* Prevents hero from hiding behind fixed nav */
}

/* =========================================================
   NAVIGATION — FIXED CHARCOAL + GOLD
========================================================= */
.navbar {
  background-color: #1a1a1a;
  border-bottom: 2px solid #d4af37;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 24px;
  display: flex;
  align-items: center;
}

/* Logo frame */
.logo img {
  height: 180px;
  border-radius: 12px;
  padding: 6px;
  background: linear-gradient(135deg, #000000, #d4af37);
  box-shadow: 0 0 0 4px #ffffff inset;
  display: block;
  transition: box-shadow 0.25s ease;
}

.logo img:hover {
  box-shadow:
    0 0 12px rgba(212,175,55,0.45),
    0 0 0 4px #ffffff inset;
}

/* Desktop nav always visible */
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
    position: static !important;
  }
}

/* Mobile nav default hidden */
.nav-links {
  margin-left: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100000;
}

.nav-links.active {
  opacity: 1;
  transform: translateY(0);
}

/* Nav links */
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.25s ease;
}

/* Gold underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
  z-index: 99999;
}

.hamburger span {
  background-color: #ffffff;
  height: 3px;
  width: 28px;
  margin: 4px 0;
}

/* =========================================================
   HERO SECTION — WORDPRESS STYLE
========================================================= */
.about-hero {
  background: url('../img/fam1.png') right center / contain no-repeat;
  color: #ffffff;
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Hero overlay */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.30),
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 2;
  pointer-events: none;
}

.about-hero .hero-container,
.about-hero .hero-text {
  position: relative;
  z-index: 3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  width: 50%;
  border-left: 4px solid #d4af37;
  padding-left: 1.25rem;
  padding-top: 0.5rem;
}

/* Gold headline */
.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.8px;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  text-shadow: 0 0 12px rgba(212,175,55,0.45);
}

.about-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 70px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 2px;
}

/* Hero paragraph */
.about-hero p {
  font-size: 1.2rem;
  color: #111111;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1.25rem;
  max-width: 520px;
}

/* Mobile hero */
@media (max-width: 800px) {
  .hero-text {
    width: 100%;
  }

  .about-hero {
    background-size: 70%;
    background-position: center bottom;
    padding-bottom: 6rem;
  }
}

/* =========================================================
   ABOUT / INTRO SECTIONS
========================================================= */
.about-agency {
  background-color: #ffffff;
  padding: 80px 20px;
}

.about-content {
  max-width: 900px;
  margin: auto;
}

.about-content h2 {
  color: #111111;
  font-size: 2.2rem;
  margin-bottom: 20px;
  border-left: 6px solid #d4af37;
  padding-left: 12px;
}

.about-content p {
  color: #444444;
  line-height: 1.8;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

/* =========================================================
   ABOUT INTRO IMAGE — TEXT WRAP
========================================================= */
.about-intro-img {
  float: left;
  width: 260px;
  height: auto;
  margin: 0 25px 20px 0;
  border-radius: 12px;
  border: 4px solid #d4af37;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =========================================================
   HOME MISSION IMAGE — TEXT WRAP (NEW)
========================================================= */
.mission-intro-img {
  float: left;
  width: 260px;
  height: auto;
  margin: 0 25px 20px 0;
  border-radius: 12px;
  border: 4px solid #d4af37;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =========================================================
   STAFF SECTION
========================================================= */
.staff-section {
  background-color: #1a1a1a;
  padding: 100px 20px;
}

.staff-section h2 {
  text-align: center;
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 60px;
}

.staff-card {
  max-width: 900px;
  margin: 0 auto 50px;
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  border-left: 6px solid #d4af37;
}

.staff-photo {
  width: 180px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid #d4af37;
}

.staff-info h3 {
  color: #111111;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.staff-info p {
  color: #444444;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* =========================================================
   CLICKABLE COVERAGE CARDS
========================================================= */
.coverage-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.coverage-link:hover .staff-card {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transition: 0.25s ease;
  cursor: pointer;
}

/* =========================================================
   CONTACT FORM
========================================================= */
.contact-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.contact-page {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  color: #111111;
  margin-bottom: 20px;
}

.contact-info p {
  color: #444444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-left: 6px solid #d4af37;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #dddddd;
  border-radius: 8px;
}

.contact-form button {
  background-color: #d4af37;
  color: #111111;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
  background-color: #111111;
  color: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
}

/* =========================================================
   FOOTER — CHARCOAL + GOLD
========================================================= */
.footer {
  background-color: #1a1a1a;
  border-top: 2px solid #d4af37;
  text-align: center;
  padding: 50px;
}

.footer p {
  color: #ffffff;
  margin-bottom: 6px;
}

.footer small {
  color: #cccccc;
  font-size: 0.9rem;
}

/* =========================================================
   MOBILE NAVIGATION FIX + MOBILE IMAGE FIXES
========================================================= */
@media (max-width: 768px) {

  .staff-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  /* Mobile dropdown menu */
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: absolute;
    top: 110px;
    right: 20px;
    border: 1px solid #d4af37;
    padding: 20px;
    z-index: 100000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Coverage intro image — mobile layout */
  .coverage-intro-img {
    float: none;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 350px;
  }

  /* About intro image — mobile layout */
  .about-intro-img {
    float: none;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 350px;
  }

  /* Mission intro image — mobile layout */
  .mission-intro-img {
    float: none;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 350px;
  }
}

/* =========================================================
   COVERAGE INTRO PARAGRAPH
========================================================= */
.coverage-intro {
  background-color: #ffffff;
  padding: 60px 20px;
}

.coverage-intro-content {
  max-width: 900px;
  margin: auto;
}

.coverage-intro p {
  font-size: 1.2rem;
  color: #444444;
  line-height: 1.8;
}

/* =========================================================
   COVERAGE INTRO IMAGE — TEXT WRAP
========================================================= */
.coverage-intro-img {
  float: left;
  width: 260px;
  height: auto;
  margin: 0 25px 20px 0;
  border-radius: 12px;
  border: 4px solid #d4af37;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =========================================================
   COVERAGE GRID (with icons)
========================================================= */
.coverage-grid {
  background-color: #f7f7f7;
  padding: 80px 20px;
}

.coverage-grid h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #111111;
  margin-bottom: 50px;
}

.coverage-grid-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.coverage-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border-left: 6px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: left;
}

.coverage-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #d4af37;
}

.coverage-box h3 {
  font-size: 1.4rem;
  color: #111111;
  margin-bottom: 15px;
}

.coverage-box ul {
  list-style: none;
  padding: 0;
}

.coverage-box li {
  font-size: 1.05rem;
  color: #444444;
  padding: 6px 0;
  border-bottom: 1px solid #eeeeee;
}

.coverage-box li:last-child {
  border-bottom: none;
}
.coverage-btn-wrap {
  margin-top: 20px;
}

.coverage-btn {
  display: inline-block;
  background-color: #d4af37;
  color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.coverage-btn:hover {
  background-color: #111111;
  color: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
  cursor: pointer;
}
