       /* LOCATION SECTION
          */
          .location-section {
              background-color: rgba(5, 5, 5, 1);
          }

          /* Map */
          .map-wrapper {
              min-height: 400px;
              height: 100%;
              border-radius: 8px;
              overflow: hidden;
              box-shadow: 0 10px 25px rgba(0,0,0,0.1);
          }

          .map-wrapper iframe {
              width: 100%;
              height: 100%;
              min-height: 400px;
              border: 0;
          }

          /* Right content */
          .location-info {
              background: #ffffff;
              padding: 35px;
              border-radius: 8px;
              box-shadow: 0 10px 25px rgba(0,0,0,0.08);
              height: 100%;
          }

          .location-info h3 {
              font-size: 26px;
              font-weight: 600;
              margin-bottom: 15px;
              color: #2b2b2b;
          }

          .location-info p {
              font-size: 15px;
              line-height: 1.7;
              color: #555;
              margin-bottom: 25px;
          }

          /* List */
          .location-list {
              list-style: none;
              padding: 0;
              margin: 0;
          }

          .location-list li {
              display: flex;
              justify-content: space-between;
              align-items: center;
              padding: 12px 0;
              border-bottom: 1px dashed #ddd;
          }

          .location-list li span {
              font-weight: 500;
              color: #333;
          }

          .location-list li strong {
              color: #caa45d;
              font-weight: 600;
          }

          /* Responsive */
          @media (max-width: 768px) {
              .location-info {
                  padding: 25px;
              }

              .location-info h3 {
                  font-size: 22px;
              }

              .location-list li {
                  flex-direction: column;
                  align-items: flex-start;
                  gap: 4px;
              }
          }
         .form-control::placeholder {
    color: #080808 !important;
    background-color: #fff;
    opacity: 1;
}