/* ============================
   GLOBAL STYLES
============================ */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================
   HEADER + LOGO AREA
============================ */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Branding (logo + site title) */

.branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  margin-top: 8px;
}

.logo-title {
  font-size: 26px;
  font-weight: bold;
  color: #222;
}

.logo-subtitle {
  font-size: 16px;
  color: #555;
}

.logo-tagline {
  font-size: 14px;
  color: #777;
  margin-top: 4px;
}

/* ============================
   HEADER LINKS (NEW NAV-LIKE LINKS)
============================ */

.header-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.header-contact a {
  font-size: 15px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.2s ease;
}

/* Special styling for About / Services / Contact */

.header-link {
  color: #0056b3;
  font-weight: 600;
  background: #f4f4f4;
  border: 1px solid #d9d9d9;
}

.header-link:hover {
  background: #e9e9e9;
  text-decoration: none;
}

/* Phone & email styling */

.header-phone, .header-email {
  font-weight: bold;
  color: #333;
}

.header-phone:hover, .header-email:hover {
  color: #0056b3;
}

/* ============================
   HERO SECTION
============================ */

.hero {
  padding: 40px 0;
  background: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-copy {
  flex: 1 1 58%;
  padding-right: 25px;
}

.hero-panel {
  flex: 1 1 35%;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 4px;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 10px 18px;
  margin: 6px 6px 6px 0;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary {
  background: #0056b3;
  color: #fff;
}

.btn.primary:hover {
  background: #003f82;
}

.btn.secondary {
  background: #e1ecff;
  color: #0056b3;
  border: 1px solid #bcd2f7;
}

.btn.secondary:hover {
  background: #d4e4ff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #ccc;
  color: #444;
}

.btn.ghost:hover {
  background: #f5f5f5;
}

/* ============================
   CONTENT SECTIONS
============================ */

.content-section {
  padding: 40px 0;
}

.content-section.alt {
  background: #f8f8f8;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-card {
  padding: 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}

/* ============================
   CALL TO ACTION BOX
============================ */

.cta-section {
  background: #0056b3;
  color: #fff;
  padding: 50px 0;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-box a {
  color: #fff;
}

/* ============================
   FOOTER
============================ */

.site-footer {
  background: #f7f7f7;
  padding: 25px 0;
  border-top: 1px solid #ddd;
  text-align: center;
}

.footer-links a {
  color: #333;
  margin: 0 8px;
}

.footer-links a:hover {
  color: #0056b3;
}

/* ============================
   RESPONSIVE DESIGN
============================ */

@media (max-width: 840px) {
  .hero-inner {
    flex-direction: column;
  }

  .hero-copy {
    padding-right: 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-contact {
    justify-content: center;
    margin-top: 12px;
  }
}
