  .footer {
    background: #113D54;
    color: #fff;
    padding: 50px 0 0;
    font-family: Arial, sans-serif;
  }

  .footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-column {
    flex: 1;
    min-width: 220px;
  }

  .footer h3 {
    margin-bottom: 12px;
    font-size: 19px;
    color: #FFD700;
  }

  .footer ul {
    list-style: none;
    padding: 0;
  }

  .footer ul li {
    margin-bottom: 6px;
  }

  .footer ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
  }

  .footer ul li a:hover {
    color: #FFD700;
  }

  /* ---------------- ROW 2 VIDEO + MAP ---------------- */
  .footer-row2 {
    width: 90%;
    margin: 35px auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer-card {
    background: #0F2F41;
    border-radius: 10px;
    padding: 15px;
    flex: 1;
    min-width: 300px;
  }

  .footer-card h4 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 18px;
  }

  /* Reduced Height Video */
  .video-wrapper {
    position: relative;
    width: 100%;
    height: 180px; /* REDUCED HEIGHT */
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
  }

  /* Video Thumbnail Box */
  .thumb-wrap {
    width: 100%;
    height: 180px; /* SAME HEIGHT AS FIRST VIDEO */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }

  .thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .thumb-wrap video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  /* Map iframe */
  .map-frame,
  .footer-card iframe {
    width: 100%;
    height: 180px;  /* SAME HEIGHT */
    border: 0;
    border-radius: 8px;
  }

  /* Footer bottom */
  .footer-bottom {
    background: #0A2836;
    margin-top: 30px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
  }

  /* Responsive */
  @media(max-width: 768px) {
    .footer-row2 {
      flex-direction: column;
    }
  }

