html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #0d182a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
}

/* PAGE WRAPPER */
.full-page-red {
  min-height: 100vh; /* full viewport height */
  background: #0d182a url("../img/holding-bg.jpg") no-repeat top center;
  background-size: 100% auto;
  display: flex; /* make it a flex column */
  flex-direction: column;
}

/* HEADER */
.site-header {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 24px;
}

.logo img {
  max-width: 120px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* NAV LINKS */
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px; /* spacing between items */
  font-size: 14px;
  letter-spacing: 0.18em;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  padding: 6px 0 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* underline “bar” */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 32px;
  height: 2px;
  background: #25e5ff;
  border-radius: 999px;
  transform: translate(-50%, 8px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #25e5ff;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* CTA BUTTON */
.cta-btn {
  border: none;
  outline: none;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #4be4f2;
  color: #07111f;
  white-space: nowrap;
}

.cta-btn .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.15);
  font-size: 16px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* When header is open on mobile */
.site-header.open .menu-toggle span {
  transform: rotate(45deg);
}

.site-header.open .menu-toggle span::before {
  transform: rotate(-90deg) translateX(-6px);
}

.site-header.open .menu-toggle span::after {
  opacity: 0;
}

/* SECTION LAYOUT */
.full-page-red > section {
  flex: 1; /* take remaining space */
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  padding: 2rem;
  box-sizing: border-box;
}

.section-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.one-column {
  text-align: center;
  padding: 0px 0px 40px;
}

  h1 {
    font-size: 74px;
    font-weight:500;
    padding:0px;
    margin:0px;
  }

.one-column p,
.one-column h1 {
  color: #fff;
}



/* TWO-COLUMN CARD LAYOUT */
.two-column {
  display: flex;
  gap: 2rem;
  align-items: stretch; /* equal height columns */
}

.two-column > .col {
  flex: 1;
  position: relative;
  border-radius: 16px;
  box-sizing: border-box;
  background: linear-gradient(
    90deg,
    rgba(10, 51, 94, 0.3) 0%,
    rgba(3, 29, 58, 0.4) 100%
  );
  overflow: hidden;
}

.two-column > .col.vid {
  padding: 0;
}

/* gradient border overlay */
.two-column > .col::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(
    145deg,
    rgba(41, 188, 200, 0.35),
    rgba(3, 29, 58, 0)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.two-column h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.two-column p {
  margin-top: 0;
  line-height: 1.5;
}

/* VIDEO */
.hero-video,
.hero-video-mobile {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-video-mobile {
  display: none; /* default desktop: hide mobile image */
}

.hero-video-wrap {
width: 275%;
    display: block;
    /* object-fit: cover; */
    /* object-position: top; */
    margin-left: -852px;
}

.hero-video {
  width: 119%;
  display: block;
  object-fit: cover;
  object-position: top;
}

/* FORM LAYOUT */
.octo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.octo-form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.octo-form-row--two {
  flex-direction: row;
}

.octo-form-row--two .field {
  flex: 1;
}

/* FORM FIELDS */
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.field .req {
  color: #27e5ff;
}

.field input,
.field select {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(4, 21, 40, 0.8);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder,
.field select::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.field input:focus,
.field select:focus {
  border-color: #27e5ff;
  box-shadow: 0 0 0 1px rgba(39, 229, 255, 0.35);
}

/* SELECT ARROW WRAPPER */
.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 44px; /* room for arrow */
}

.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.foot-logo{
    
    padding-top:20px;
}

/* FORM MESSAGES */
.form-message {
  margin-top: 8px;
  font-size: 14px;
}

.form-message.success {
  color: #27e5ff;
}

.form-message.error {
  color: #ff6b6b;
}

/* FOOTER */
footer {
  padding: 10px 32px;
  box-sizing: border-box;
  text-align: center;
}

footer img {
  max-width: 140px;
}

footer p,
footer a {
  color: #a9b6c8;
  font-size:12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .octo-form-row--two {
    flex-direction: column;
  }

  .hero-video {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .main-nav,
  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.open .main-nav,
  .site-header.open .cta-btn {
    display: flex;
  }

  .site-header.open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: #0d182a;
  }

  .site-header.open .cta-btn {
    margin-left: 24px;
    margin-top: 8px;
  }

  .two-column {
    flex-direction: column; /* stack columns on mobile */
  }
  .hero-video-wrap {
    margin-left: -377px;
}

  h1 {
    font-size: 38px;
    font-weight:500;
    padding:0px;
    margin:0px;
  }

}

.paddcol{
    padding:2rem 2rem 0rem 2rem !important;
    
}

.paddme{
padding: 2rem !important;
    text-align: center;
    position: absolute;
    z-index: 1;
    bottom: 0;
}

.paddme a.tel{
    
    color:#35FBFF;
    font-size:24px;
    font-weight:500;
    text-decoration:none;
}

.paddme img{
    max-width: 140px;
    display: block;
    margin: 30px auto;
}


