.wes-body {
    min-height: 100vh;
    background: #0b1b2b;
    color: #fff;
  }
  
  .wes-bg {
    position: fixed;
    inset: 0;
    background-image: url("../img/WES_background_1.png");
    background-size: cover;
    background-position: center;
    filter: saturate(0.95);
    z-index: -2;
  }
  
  .wes-bg::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(6, 17, 28, 0.70), rgba(6, 17, 28, 0.35));
    z-index: -1;
  }
  
  .wes-nav {
    background: rgba(3, 10, 18, 0.55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .wes-logo {
    height: 44px;
    width: auto;
    background: none;
    border-radius: 0;
    padding: 0;
  }
  
  /* Larger logo on desktops */
  @media (min-width: 992px) {
    .wes-logo {
      height: 60px;
    }
  }
  
  .wes-card {
    background: rgba(9, 20, 34, 0.62);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }
  
  .wes-footer {
    background: rgba(3, 10, 18, 0.45);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  
  .wes-image-placeholder {
    border-radius: 18px;
    border: 1px dashed rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    min-height: 240px;
    display: grid;
    place-items: center;
  }
  
  .wes-scroll-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 320px);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  
  .wes-service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    overflow: hidden;
  }

  .wes-image-container {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
  }
  
  .wes-home-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .wes-home-image {
    animation: fadeIn 0.6s ease-in-out;
  }

  .wes-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Make Django form widgets look decent */
  input, textarea {
    width: 100%;
    border-radius: 10px !important;
  }