@charset "utf-8";

/* Reset & Base */
* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.4;
  color: #333;
}

a {
  color: #F05024;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: underline;
  text-decoration-style: dotted;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Section (s1) */
.s1 {
  width: 100%;
  height: 500px;
  background-color: #0B0B0B;
  border-bottom: 8px solid #F05024;
  background-image: url("/hdr-bg.png");
  /* Fixed Path */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.h1-logo {
  position: absolute;
  width: 150px;
  top: 30px;
  right: 5%;
  z-index: 10;
}

.h1-logo-mobile {
  display: none;
  position: absolute;
  width: 200px;
  /* Horizontal logo needs more width */
  top: 30px;
  right: 5%;
  z-index: 10;
}

.h1-title {
  color: #f0f0f0;
  font-weight: 300;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin: 0;
  max-width: 600px;
  text-align: left;
  line-height: 1.2;
}

.h1-title span,
.mcontent>h1>span,
.mission span {
  font-weight: 700;
}

.h1-title span.o,
.mcontent>h1>span.o,
.mission span.o {
  color: #F05024;
}

/* Content Sections */
.mcontent {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.mcontent>h1 {
  flex: 1;
  min-width: 300px;
  text-align: left;
  color: #000;
  font-weight: 400;
  font-size: clamp(1.2rem, 4vw, 22pt);
  margin: 0;
}

.img-brs {
  border: 10px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.whbg {
  background-image: url("/helixcomb3.png");
  /* Fixed Path */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}

/* Mission Section */
.fw-sec-b {
  width: 100%;
  background-color: #131313;
  background-image: url("/footer-bg.png");
  /* Fixed Path */
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

.mission {
  text-align: center;
  font-size: clamp(1rem, 3.5vw, 20pt);
  color: #FFF;
  font-weight: 300;
  margin: 0;
  width: 100%;
}

/* Grid & Choice Headers */
.mh1 {
  font-weight: 700;
  color: #F05024;
  font-size: clamp(1.5rem, 5vw, 28pt);
  text-align: center;
  margin: 60px 20px 40px;
}

.mh4 {
  font-weight: 400;
  color: #444;
  font-size: clamp(1rem, 3vw, 16pt);
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

/* Options / Cards */
.opts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.opt {
  width: 300px;
  min-height: 300px;
  background-color: #FFFFFF;
  border-top: 5px solid #F05024;
  border-bottom: 1px solid #eee;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.opt:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #fafafa;
}

.opt2 {
  border-top-color: #C32127;
  width: 350px;
}

.opt i {
  font-size: 45pt;
  margin-bottom: 20px;
  color: #F05024;
}

.opt h2 {
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  color: #222;
}

.opt p {
  font-size: 11pt;
  margin: 0;
  color: #666;
}

/* Services Wrapper */
.gr-wrap {
  background-color: #eee;
  width: 100%;
  padding: 80px 0;
}

/* Call to Action Section */
.hlx-sec {
  width: 100%;
  background-image: url("/hlx-sec.png");
  /* Fixed Path */
  min-height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.mh1r {
  font-weight: 700;
  color: #000;
  font-size: clamp(1.2rem, 4.5vw, 24pt);
  text-align: center;
  max-width: 800px;
  padding: 40px;
  border-radius: 8px;
}

.mh1r small {
  display: block;
  font-weight: 400;
  color: #C32329;
  margin-top: 15px;
  font-size: 0.6em;
}

/* Footer */
footer {
  background-color: #0F0F0F;
  color: #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 80px 10%;
}

.ft-item {
  width: 300px;
}

.fplogo {
  width: 220px;
  margin-bottom: 30px;
}

.ft-p {
  font-size: 10pt;
  line-height: 1.6;
  color: #bbb;
}

.social {
  margin: 25px 0;
  display: flex;
  gap: 15px;
}

.social i {
  font-size: 20pt;
  color: #fff;
}

.social a:hover i {
  color: #F05024;
}

.copy {
  font-size: 9pt;
  color: #666;
}

.ft-item h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 25px;
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 10pt;
  color: #ccc;
}

.ft-contact-item i {
  color: #F05024;
  margin-top: 3px;
}

.ft-contact-item a {
  color: #ccc;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .s1 {
    height: 400px;
  }

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

  .mcontent>h1 {
    text-align: center;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .opts {
    flex-direction: column;
    align-items: center;
  }

  .opt,
  .opt2 {
    width: 100%;
    max-width: 400px;
    min-height: auto;
  }

  .h1-title {
    text-align: center;
    margin: 0 auto;
  }

  .s1 {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .h1-logo {
    display: none;
  }

  .h1-logo-mobile {
    display: block;
    right: 50%;
    transform: translateX(50%);
    width: 180px;
    top: 20px;
  }

  .h1-title {
    margin-top: 80px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
  }

  .ft-item {
    width: 100%;
  }

  .fplogo {
    margin: 0 auto 30px;
  }

  .social {
    justify-content: center;
  }

  .ft-contact-item {
    justify-content: center;
  }
}