:root {
    --topbar-height: 140px;
  }
  
  /* Reset + Base */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: var(--topbar-height);
    background: #abd7e9;
  }
  
  .background-wrapper::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 128, 250, 0.15);
    z-index: -1;
    pointer-events: none;
  }
  
  /* Top Bar */
  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--topbar-height);
    background-color: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  
  .logo {
    height: 120px;
    width: auto;
  }
  
  /* Hamburger Menu */
  .hamburger {
    font-size: 2.5em;
    cursor: pointer;
    color: rgb(0, 0, 0);
  }
  
  .menu-items {
    list-style: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    display: none;
    flex-direction: column;
    position: fixed;
    right: 30px;
    top: var(--topbar-height);
    border-radius: 5px;
    z-index: 999;
  }
  
  .menu-items.open {
    display: flex;
  }
  
  .menu-items li {
    margin: 10px 0;
  }
  
  .menu-items a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1.2em;
  }
  
  /* Base Container */
  .base-container {
    max-width: 1080px;
    margin: 0 auto;
  }
  
  .base-container:first-of-type {
    padding-top: var(--topbar-height);
  }
  
  /* Section Layout */
  .section-block {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    scroll-margin-top: var(--topbar-height);
  }
  
  .section-block img {
    width: 100%;
    max-width: 1060px;
    height: auto;
    display: block;
  }
  
  /* Parallax Bands */
  .parallax-band {
    width: 100vw;
    height: 360px;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .parallax-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 128, 250, 0.4);
    z-index: 1;
  }
  
  /* Hotspot Styling */
  .hotspot {
    position: absolute;
    width: 180px;
    height: 180px;
    display: block;
    z-index: 10;
    background-color: transparent;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  
  .hotspot:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .hotspot-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
  }
  
  .hotspot:hover .hotspot-text {
    opacity: 1;
  }
  
  .phone-hotspot {
    top: 79%;
    left: 16%;
    transform: translate(-50%, -50%);
  }
  
  .email-hotspot {
    top: 79%;
    left: 37%;
    transform: translate(-50%, -50%);
  }
  
  .form-hotspot {
    top: 79%;
    left: 63%;
    transform: translate(-50%, -50%);
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    position: relative;
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
  }
  
  .modal-content img {
    display: block;
    max-height: 80px;
    margin: 0 auto 10px auto;
  }

  .modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
  }

  .contact-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
  }

  .contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .contact-form .required {
    color: red;
  }

  .contact-form button {
    padding: 10px 20px;
    font-size: 1em;
    background: #0780fa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .close-button {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    :root {
      --topbar-height: 100px;
    }

    .top-bar {
      height: var(--topbar-height);
      padding: 0 15px;
    }

    .logo {
      height: 80px;
    }

    .hamburger {
      font-size: 2em;
    }

    .menu-items {
      top: var(--topbar-height);
    }

    .base-container:first-of-type {
      padding-top: var(--topbar-height);
    }

    .parallax-band {
      background-attachment: scroll;
      height: 300px;
    }

    .hotspot {
      width: 140px;
      height: 140px;
    }
  }

  @media (max-width: 480px) {
    .logo {
      height: 60px;
    }

    .parallax-band {
      height: 200px;
    }

    .hotspot {
      width: 120px;
      height: 120px;
    }

    .hotspot-text {
      font-size: 1em;
    }
  }
