/* ----------------------------------------------------
   IMPORT FONTS
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ----------------------------------------------------
   GLOBAL RESET
---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #e6e6e6;
  line-height: 1.6;
}

/* ----------------------------------------------------
   HEADER
---------------------------------------------------- */
header {
  width: 100%;
  background: url("header_bg.jpg") center/cover no-repeat;
  border-bottom: 3px solid #e2691a;
  padding: 20px 0;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo {
  height: 95px;
  width: auto;
}

.header-text {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #fff;
  font-weight: 600;
}

.header-text span {
  color: #e2691a;
  font-size: 13px;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.call-text {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.call-text span {
  color: #e2691a;
  font-weight: 700;
}

.header-btn {
  background: #e2691a;
  padding: 12px 28px;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: 0.3s;
  text-transform: uppercase;
}

.header-btn:hover {
  background: #ff822e;
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero {
  background: url("bg-orange.jpg") center center/cover no-repeat;
  padding: 120px 0;
}

.hero-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.eyebrow {
  color: #e2691a;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 13px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 15px;
}

.hero-sub {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #f7f7f7;
}

.hero-body {
  margin-top: 12px;
  font-size: 17px;
  max-width: 580px;
  color: #e2e2e2;
  font-weight: 400;
}

/* SERVICE TAGS */
.service-tags {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-tags a {
  padding: 10px 22px;
  border-radius: 30px;
  color: #fff;
  border: 2px solid #e2691a;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 13px;
  text-transform: uppercase;
}

.service-tags a:hover {
  background: #e2691a;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 14px;
  text-transform: uppercase;
}

.primary-btn {
  background: #e2691a;
  color: #000;
}

.primary-btn:hover {
  background: #ff822e;
}

.secondary-btn {
  border: 2px solid #e2691a;
  color: #fff;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* HERO LOGO */
.hero-right {
  text-align: center;
}

.hero-logo {
  width: 100%;
  max-width: 540px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.9));
}

/* ----------------------------------------------------
   GENERAL SECTIONS
---------------------------------------------------- */
section {
  padding: 90px 20px;

  /* ⭐ NEW GRAY BACKGROUND ⭐ */
  background: url("bg-gray.jpg") center/cover no-repeat fixed;
}

.section-inner {
  max-width: 1300px;
  margin: auto;
}

.section-title {
  color: #e2691a;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.section-heading {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.section-intro {
  max-width: 650px;
  margin-bottom: 35px;
  font-size: 18px;
  color: #dcdcdc;
  font-weight: 400;
}

/* ----------------------------------------------------
   SERVICE CARDS
---------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(15, 15, 15, 0.92);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #222;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.card:hover {
  background: rgba(22, 22, 22, 0.98);
  border-color: #444;
  transform: translateY(-3px);
}

.card h3 {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.card p,
.card li {
  font-size: 16px;
  color: #cccccc;
  font-weight: 400;
}

.card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.card li {
  margin-bottom: 4px;
}

/* ----------------------------------------------------
   FEATURE GRID (WHY CHOOSE LEGACY)
---------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-box {
  background: rgba(20, 20, 20, 0.92);
  border-radius: 999px;
  padding: 26px 32px;
  border: 1px solid #222;
  backdrop-filter: blur(4px);
}

/* ----------------------------------------------------
   CONTACT SECTION
---------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.contact-box {
  background: rgba(18, 18, 18, 0.92);
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid #222;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.contact-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #ff8a34, #e2691a);
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
  text-align: center;
  padding: 40px;
  background: #000;
  border-top: 2px solid #e2691a;
  font-size: 15px;
  color: #999;
  font-weight: 400;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 960px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  .hero h1 {
    font-size: 48px;
  }

  .card-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ================================
   MOBILE / SMALL SCREEN LAYOUT
=================================== */
@media (max-width: 900px) {

  /* Header stacks instead of staying spread out */
  header {
    position: static;              /* remove fixed feel on small screens */
    padding: 10px 16px;
  }

  .header-container {
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header-left img {
    height: 56px;
  }

  .header-right .cta-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* Hero section */
  .hero {
    padding: 120px 16px 70px;
    background-position: top center;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.4rem;       /* smaller so it fits better */
    line-height: 1.1;
  }

  .hero p {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .service-tags span {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 0.8rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-buttons a,
  .contact-buttons a {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin-right: 0;
  }

  /* Section padding tightened on mobile */
  .section-dark,
  .section-gray {
    padding: 60px 16px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Cards become 1 per row */
  .card-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    padding: 22px 18px;
  }

  /* Contact section cards stack */
  .contact-container {
    width: 100%;
  }

  .contact-boxes {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-card {
    width: 100%;
    padding: 22px 18px;
  }

  /* Footer spacing on small screens */
  footer {
    padding: 18px 12px;
    font-size: 0.82rem;
  }
}