:root {
      --bg: #384D78;
      --bg-alt: #171a21;
      --panel: rgba(255, 255, 255, 0.05);
      --panel-strong: rgba(255, 255, 255, 0.08);
      --text: #f4f1e8;
      --muted: #cfc7b5;
      --line: rgba(198, 40, 40, 0.22);
      --gold: #d4af37;
      --gold-soft: #f1d98a;
      --red: #C62828;
      --red-soft: #F09797;
      --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      --radius: 20px;
      --max: 1240px;
    }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top, rgba(198, 40, 40, 0.14), transparent 32%),
        linear-gradient(180deg, #27437C 0%, #3E86B3 55%, #1C3059 100%);
      line-height: 1.6;
    }

.body1 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    background: rgba(22,84,148,0.50);
        linear-gradient(180deg, #27437C 0%, #27437C 55%, #1C3059 100%);
    color: #1a1a1a;
      display: flex;
      flex-wrap: wrap;
}


a { color: inherit; text-decoration: none; }

.container {
      width: min(var(--max), calc(100% - 2rem));
      margin: 0 auto;
    }

.container1 {
      width: min(var(--max), calc(100% - 2rem));
      margin: 0 auto;
    }


.site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(14px);
      background: rgba(11, 42, 74, 0.82);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

.nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

.brand {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

.brand-title {
      margin: 0;
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

.brand-subtitle {
      font-size: 0.96rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #b6ae9b;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.9rem;
      font-size: 1.06rem;
    }

.nav-links a {
      color: var(--muted);
      transition: color 0.2s ease;
    }

.nav-links a:hover,
.nav-links a.active {
      color: var(--red-soft);
    }

.nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.82rem 1.15rem;
      border-radius: 999px;
      border: 1px solid rgba(198, 40, 40, 0.45);
      background: linear-gradient(180deg, rgba(198, 40, 40, 0.24), rgba(198, 40, 40, 0.1));
      color: #fff6d7;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    }


.navbar {
    background: #0B2A4A;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}

.phone {
    background: #C62828;
    /* padding: 8px 14px; */
    border-radius: 6px;
}

.hero {
    background: url('images/RangeBG.png') center/cover no-repeat;
    height: 90vh;
    position: relative;
    /* position: static; */
}

.hero-overlay {
    /* background: rgba(11,42,74,0.75); */
    background: rgba(22,84,148,0.50);
    color: white;
    text-align: center;
    /* padding: 100px 20px; */
    /* padding: 100px 20px; */
    height: 100%;
}

.image-container {
    /* Define the parent container's height. This can be a fixed value, 
       a percentage of the viewport height (vh), or any other value. */
    height: 60%; 
    /* Optional: add a border to see the container boundaries */
    /* border: 2px solid blue; */
}

.image-container img {
    /* Set the image height to half (50%) of its parent container's height. */
    /* height: 50%; */
    /* Set the aspect ratio for width/height. A value of 0.75 or 0.75 / 1 */
    /*   means the width will be 75% of the height. */
    aspect-ratio: 3 / 4; 
    /* Optional: Ensures the image covers the area without distortion */
    /* object-fit: cover; */
    object-fit: scale-down;
}

.hero h1 {
    /* padding-top: 0; */
    /* margin-top: 0; */
    font-size: 48px;
}

.hero h2 {
    /* padding-top: 0; */
    /* margin-top: 0; */
    /* margin-bottom: 0; */
    font-size: 40px;
}

.hero p {
    font-size: 20px;
}

.btn-primary {
    background: #C62828;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}


    .section {
      padding: 1rem 0 5rem;
    }

    .section-head {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      align-items: end;
      margin-bottom: 1.5rem;
    }

    .section-head p {
      max-width: 60ch;
      color: var(--muted);
      margin-bottom: 0;
    }


    .contact-band {
      padding: 1.9rem;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(198, 40, 40,0.12), rgba(255,255,255,0.04));
      box-shadow: var(--shadow);
      text-align: center;
      width: auto;
    }

    .contact-band p {
      color: var(--muted);
      margin-left: auto;
      margin-right: auto;
    }

    .contact-band h2 {
      display: inline-flex;
      padding: 0.35rem 0.8rem;
      margin-bottom: 1rem;
      border-radius: 999px;
      background: rgba(40, 140, 198, 0.14);
      border: 1px solid rgba(198, 40, 40, 0.22);
      color: var(--gold);
      margin-left: auto;
      margin-right: auto;
    }

    .eyebrow {
      display: inline-flex;
      padding: 0.35rem 0.8rem;
      margin-bottom: 1rem;
      border-radius: 999px;
      background: rgba(40, 140, 198, 0.14);
      border: 1px solid rgba(198, 40, 40, 0.22);
      color: var(--gold);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.98rem;
    }



.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.card {
    background: #2f3ba3;
    color: white;
    padding: 30px;
    width: 250px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h3{
    background: #2f3ba3;
    color: var(--gold);
}

.highlight {
    border: 2px solid #C62828;
}

.why {
    background: #0B2A4A;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.reason {
    padding: 20px 20px;
    text-align: center;
    display: flex;
}

.conrad {
    /* display: flex; */
    /* padding: 20px; */
    width: 40%;
    text-align: center;
    /* flex-wrap: wrap; */
}

.venus {
    /* padding: 20px; */
    width: 60%;
    text-align: left;
}

.mission {
    /* margin-top: 30px; */
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    text-align: center;
    padding: 20px;
    background: #091E33;
    color: white;
}


    .sticky-book-now {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      z-index: 250;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 156px;
      padding: 1rem 1.25rem;
      border-radius: 999px;
      border: 1px solid rgba(198, 40, 40, 0.5);
      background: linear-gradient(180deg, rgba(198, 40, 40, 0.95), rgba(130, 20, 20, 0.95));
      color: #fff6d7;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-decoration: none;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .sticky-book-now:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 38px rgba(0, 0, 0, 0.4);
    }

    .sticky-book-now:focus-visible,
    .btn-primary:focus-visible,
    .btn-secondary:focus-visible,
    .nav-links a:focus-visible,
    .nav-cta:focus-visible {
      outline: 3px solid var(--gold-soft);
      outline-offset: 3px;
    }

.construction-banner {
  position: fixed;
  top: 70px; /* sits below your sticky header */
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 10px 16px;
  border-radius: 999px;

  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);

  color: #fff6d7;
  font-size: 0.9rem;
  font-weight: 600;

  max-width: 90%;
}

.construction-banner button {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 6px;
}

.construction-banner button:hover {
  opacity: 0.7;
}
